I want, When user click button
then redirect to “Clear Data” page[3rd page in attached image].
By this code I get first screen [see image], I want to open direct 3rd Page.
Intent intent = new Intent();
intent.setComponent(new ComponentName("com.android.settings", "com.android.settings.Settings$ManageApplicationsActivity"));
intent.setAction(Intent.ACTION_APPLICATION_PREFERENCES);
intent.addCategory(Intent.CATEGORY_DEFAULT);
intent.setData(Uri.parse("package:com.android.chrome"));
// Verify that the intent resolves to an activity
if (intent.resolveActivity(getPackageManager()) != null) {
startActivity(intent);
}