If I am in my application and sent the user to his configuration with this.
startActivity(new Intent(android.provider.Settings.ACTION_SECURITY_SETTINGS), 0);
But how can I send the user to the home of his phone, not return it to the application.
Since to return it to the application is with this
Intent LaunchIntent = new Intent(context,Home.class);
LaunchIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(LaunchIntent);