全文搜索
标题搜索
全部时间
1小时内
1天内
1周内
1个月内
默认排序
按时间排序
为您找到相关结果3,303,640个

Android开发者常见的UI组件总结大全_Android_脚本之家

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 <EditText android:layout_width="match_parent" android:layout_height="wrap_content" android:layout_marginLeft="30dp" android:layout_marginRight="30dp" android:layout_marginTop="20dp" android:background="@color/design_defaul...
www.jb51.net/program/320199x...htm 2024-10-5

Android 五大布局方式详解_Android_脚本之家

android:orientation:可以设置布局的方向 android:gravity:用来控制组件的对齐方式 layout_weight:控制各个组件在布局中的相对大小第一个实例 ①效果图:②核心代码如下: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 main.xml <?
www.jb51.net/article/919...htm 2024-10-2

Android封装常用工具类的示例详解_Android_脚本之家

是对android log的封装,封装后 可以设置显示级别 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69...
www.jb51.net/program/318431e...htm 2024-10-5

Android入门之ScrollView的使用教程_Android_脚本之家

14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="...
www.jb51.net/article/2672...htm 2024-10-5

Android四大组件之Activity详细介绍_Android_脚本之家

android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="MainStart2" android:text="带回调启动"/> Activity中 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 package com.example.activity_01; import android.app.Activity; import android.os.Bundle; ...
www.jb51.net/article/2332...htm 2024-9-28

Android协程的7个重要知识点汇总_Android_脚本之家

下面将介绍如何在Android应用中使用协程处理UI操作,确保用户界面的流畅和响应。 在UI线程中启动协程 Kotlin Coroutine允许我们在UI线程中启动协程,通过指定Dispatchers.Main调度器来实现。这使得我们可以在协程内部执行异步操作,而不会影响主线程的响应性。 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 ...
www.jb51.net/program/298336t...htm 2023-9-15

Android中Activity组件实例介绍_Android_脚本之家

②、在一个 Android 应用中,存在多个 Activity 时,需要应用 startActivity() 方法来启动需要的 Activity。 关闭Activity 在Android 中,如果想要关闭当前的 Activity,可以使用 Activity 类提供的 finish()方法。 举例说明:启动和关闭 Activity核心代码如下 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18...
www.jb51.net/article/2347...htm 2024-9-29

Android平台中实现数据存储的5种方式_Android_脚本之家

SharedPreferences是Android平台上一个轻量级的存储类,主要是保存一些常用的配置比如窗口状态,一般在Activity中 重载窗口状态onSaveInstanceState保存一般使用SharedPreferences完成,它提供了Android平台常规的Long长 整形、Int整形、String字符串型的保存。 它是什么样的处理方式呢? SharedPreferences类似过去Windows系统上的ini配置...
www.jb51.net/article/857...htm 2024-10-1

Android三种网络通讯方式及Android的网络通讯机制_Android_脚本之家

android:id="@+id/send" android:layout_width="fill_parent" android:layout_height="wrap_content" android:text="@string/send" /> </LinearLayout>MainActivity.java的代码入下:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35...
www.jb51.net/article/747...htm 2024-10-5

Android事件处理的两种方式详解_Android_脚本之家

android:textSize="35pt" android:id="@+id/mnc" /> <Button android:layout_width="match_parent" android:layout_height="wrap_content" android:id="@+id/bn" android:textSize="35pt" android:text="获取手机信息"/> </LinearLayout> 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19...
www.jb51.net/article/2766...htm 2024-9-26