Android O access to App settings activity

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP


Android O access to App settings activity



Using Android 8+ Oreo I can directly access my App settings from within the App itself by making a call from a menu item like this;


Intent intent = new
Intent(Settings.ACTION_APP_NOTIFICATION_SETTINGS);
intent.putExtra(Settings.EXTRA_APP_PACKAGE, getPackageName());
startActivity(intent);



This is very handy and the Settings activity looks like this;



enter image description here



However, it would be really nice and tidy to have the back arrow and activity text that shows when using the actual system setting activity like this;



enter image description here



I'm wondering if that's at all possible..?









By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

Keycloak server returning user_not_found error when user is already imported with LDAP

415 Unsupported Media Type while sending json file over REST Template

PHP parse/syntax errors; and how to solve them?