如何在android中打开设备管理员设置?

abb*_*bie 4 android

我想进入Security->Device administrators我的设置,但是,我只能弄清楚如何打开Security->

    Intent dialogIntent = new Intent(
            android.provider.Settings.ACTION_SECURITY_SETTINGS);
    dialogIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
    startActivity(dialogIntent);
Run Code Online (Sandbox Code Playgroud)

我该怎么做呢?

小智 11

只需致电:

startActivity(new Intent().setComponent(new ComponentName("com.android.settings", "com.android.settings.DeviceAdminSettings")));
Run Code Online (Sandbox Code Playgroud)


Die*_*ano 0

您必须在意图中包含额外内容以指定要显示的片段。请参阅http://developer.android.com/reference/android/preference/PreferenceActivity.html#EXTRA_SHOW_FRAGMENT

您可以使用例如:

dialogIntent.putExtra(EXTRA_SHOW_FRAGMENT, fragmentName); 
Run Code Online (Sandbox Code Playgroud)