[Android.Runtime.Register("ACTION_APPLICATION_DETAILS_SETTINGS")] public const string ActionApplicationDetailsSettings; 欄位值 String 屬性 RegisterAttribute 備註 活動動作:顯示特定應用程式的詳細數據畫面。 在某些情況下,可能不存在相符的活動,因此請確定您不受此防護。 輸入:意圖的數據 URI 會使用 「package...
action=Settings.ACTION_APPLICATION_DETAILS_SETTINGS data= Uri.parse("package:${requireActivity().packageName}") startActivity(this) }
ACTION_CAPTIONING_SETTINGS 字幕设置的界面 ACTION_PRINT_SETTINGS 打印设置界面 ACTION_BATTERY_SAVER_SETTINGS 节电助手界面 ACTION_HOME_SETTINGS 主屏幕设置界面 ACTION_APPLICATION_DETAILS_SETTINGS 根据包名跳转到系统自带的应用程序信息 ACTION_APPLICATION_SETTINGS 应用程序列表 ACTION_MANAGE_ALL_APPLICATIONS_SETTINGS 应...
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.setAction("android.settings.APPLICATION_DETAILS_SETTINGS"); intent.setData(Uri.fromParts("package", applicationInfo.packageName, null)); startActivity(intent); } }复制 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16....
Activity Action: Show settings to allow configuration of application development-related settings. C# 複製 [Android.Runtime.Register("ACTION_APPLICATION_DEVELOPMENT_SETTINGS")] public const string ActionApplicationDevelopmentSettings; Field Value String Attributes RegisterAttribute Remarks Activity Action: ...
ActionApnSettings ActionApplicationDetailsSettings ActionApplicationDevelopmentSettings ActionApplicationSettings ActionAppLocaleSettings ActionAppNotificationBubbleSettings ActionAppNotificationSettings ActionAppOpenByDefaultSettings ActionAppSearchSettings ActionAppUsageSettings ActionAutoRotateSettings ActionBatterySaverSettings Ac...
Activity Action: Show settings to allow configuration of per application locale. Input: The Intent's data URI can specify the application package name to directly invoke the app locale details GUI specific to the package name. For example "package:com.my.app". Output: Nothing. Java documentation...
Android13 Setting 设置display Size原理解析 android.settings.application_details_settings,最近在看android源码,现在想做一个系列,专门对源码进行简单直接的分析。本人道行尚浅,希望大家能够进行批评,本人感激不尽。Android5.1Settints源码分析1概要本文分析的文件
ACTION_VOICE_INPUT_SETTINGS 辅助应用和语音输入设置 ACTION_INPUT_METHOD_SETTINGS 语言和输入法设置 ACTION_USER_DICTIONARY_SETTINGS 个人字典设置界面 ACTION_INTERNAL_STORAGE_SETTINGS 存储空间设置的界面 ACTION_SEARCH_SETTINGS 搜索设置界面 ACTION_APPLICATION_DEVELOPMENT_SETTINGS 开发者选项设置 ...
<intent android:action="android.intent.action.MAIN" android:targetPackage="com.android.settings" android:targetClass="com.android.settings.ManageApplications" /> </PreferenceScreen> 但是在ApplicationSettings.java文件中却找不到关于管理应用程序的组件的相关代码和实现的功能,因此我们再去找下有那个文件是管理应...