为您找到相关结果2,902,741个
Android开发中使用Intent打开第三方应用及验证可用性的方法详解_Android...
java.lang.NullPointerException: Attempt to invoke virtual method 'java.lang.String android.content.Intent.toString()' on a null object reference再看看 getLaunchIntentForPackage() 方法的说明:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 /** * Returns a "good" intent to launch a front-...
www.jb51.net/article/1283...htm 2024-11-28
Android ConstraintLayout约束布局使用详解_Android_脚本之家
14 15 16 17 18 19 20 21 22 23 <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" xmlns:tools="http://schemas.android.com/tools" andro...
www.jb51.net/article/2663...htm 2022-11-1
Android基准配置文件Baseline Profile方案提升启动速度_Android_脚本...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 @ExperimentalBaselineProfilesApi @RunWith(AndroidJUnit4::class) class BaselineProfileGenerator { @get:Rule val baselineProfileRule = BaselineProfileRule() @Test fun startup() = baselineProfileRule.collectBaselineProfile(packageName = "com.example.app") {...
www.jb51.net/article/2742...htm 2024-12-4
Android开发InputManagerService创建与启动流程_Android_脚本之家
14 15 16 17 18 19 20 21 22 23 24 25 // com_android_server_input_InputManagerService.cpp NativeInputManager::NativeInputManager(jobject contextObj, jobject serviceObj, const sp<Looper>& looper) : mLooper(looper), mInteractive(true) { JNIEnv* env = jniEnv(); // 1.保存上层的InputMan...
www.jb51.net/article/2665...htm 2024-12-3
浅谈Android Studio 的四种打包方式_Android_脚本之家
1. 默认为debug mode,使用的签名文件在: $HOME/.android/debug.keystore2. Release Mode 签名: build.gradle:1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 android { signingConfigs { releaseConfig { keyAlias 'stone' keyPassword 'mypwd' storeFile file('/Users/stone/Documents/project...
www.jb51.net/article/1974...htm 2024-12-3
Android滑动冲突的解决技巧_Android_脚本之家
外部拦截法是Android默认的滑动冲突解决方式。在这种方式下,父View会先拦截事件,然后根据需要将事件传递给子View。 父View可以通过重写onInterceptTouchEvent()方法来实现外部拦截法。在onInterceptTouchEvent()方法中,我们可以根据事件的类型和位置来判断是否需要拦截事件。如果需要拦截事件,则返回true,否则返回false。
www.jb51.net/program/311404o...htm 2024-12-4