通过Settings$DevelopmentSettingsActivity组件打开喵
直接调用Android设置中的开发者选项Activity(传统路径)喵~
intent:#Intent;component=com.android.settings/.Settings$DevelopmentSettingsActivity;end
通过Settings$DevelopmentSettingsDashboardActivity组件打开喵
调用新版Android设置中的开发者选项Dashboard Activity喵~
intent:#Intent;component=com.android.settings/.Settings$DevelopmentSettingsDashboardActivity;end
通过DevelopmentSettings组件打开喵
直接调用开发者设置类(旧版Android路径)喵~
intent:#Intent;component=com.android.settings/.DevelopmentSettings;end
通过系统标准动作打开开发者选项喵
使用Android官方定义的APPLICATION_DEVELOPMENT_SETTINGS动作喵~
intent:#Intent;action=android.settings.APPLICATION_DEVELOPMENT_SETTINGS;end
通过加载设置片段打开开发者选项喵
在SubSettings中加载DevelopmentSettingsDashboardFragment喵~
intent:#Intent;component=com.android.settings/.SubSettings;S.%3Asettings%3Ashow_fragment=com.android.settings.development.DevelopmentSettingsDashboardFragment;end
通过设置Activity加载片段打开开发者选项喵
通过SettingsActivity加载开发者选项Fragment喵~
intent:#Intent;action=android.intent.action.MAIN;launchFlags=0x10810000;component=com.android.settings/.SettingsActivity;S.%3Asettings%3Ashow_fragment=com.android.settings.development.DevelopmentSettingsDashboardFragment;end