Issue
I want to programatically redirect to device adminstrators settings activity . I am able to redirect user to security settings using intent flags but i want to redirect to device adminstrators settings. Can anyone help ?
Solution
To improve on the above answer
Intent intent = new Intent();
intent.setComponent(new ComponentName("com.android.settings", "com.android.settings.DeviceAdminSettings"));
startActivity(intent);
Answered By - Gaurav Das
0 comments:
Post a Comment
Note: Only a member of this blog may post a comment.