Does anyone know how to open the Android settings screen with code? Thank.
I'm not sure, but maybe this will help you:
startActivity(new Intent(Settings.ACTION_SETTINGS));
Intent intent = new Intent(Settings.ACTION_SETTINGS); intent.addCategory(Intent.CATEGORY_LAUNCHER); startActivity(intent);