为您找到相关结果3,322,896个
Android14(U)适配攻略_Android_脚本之家
在Android 14 上,运行时通过 Context#registerReceiver() 动态注册广播接收器,需要设置标记 RECEIVER_EXPORTED 或RECEIVER_NOT_EXPORTED ,标识是否导出该广播,避免应用程序出现安全漏洞,如果注册的是系统广播,则不需要指定标记。 三方SDK兼容修改方式: 如果三方SDK适配困难可以先在Activity或者Application中复写广播注册方法,如...
www.jb51.net/program/287597q...htm 2023-6-6
详解Android布局优化_Android_脚本之家
android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/color_eeeeee" android:orientation="vertical" tools:context=".MainActivity"> <LinearLayout android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:orientation...
www.jb51.net/article/1372...htm 2024-9-5
Android入门之ScrollView的使用教程_Android_脚本之家
android:layout_height="match_parent" android:orientation="vertical" tools:context=".MainActivity"> <ScrollView android:id="@+id/scrollView" android:layout_width="match_parent" android:layout_height="match_parent"> <LinearLayout android:layout_width="match_parent" android:layout_height="wrap_content...
www.jb51.net/article/2672...htm 2024-9-11
Android四大组件之Activity详细介绍_Android_脚本之家
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; import android.view.View; import android.widget.Toast; public class MainAct...
www.jb51.net/article/2332...htm 2024-9-5
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