Somebody knows how can I open Android´s Settings screen with code? Thank you.
Intent intent = new Intent(Settings.ACTION_SETTINGS); intent.addCategory(Intent.CATEGORY_LAUNCHER); startActivity(intent);