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

How to scale/resize CVPixelBufferRef in objective C, iOS

Stripe::AuthenticationError No API key provided. Set your API key using “Stripe.api_key = ”

SVG with two text elements. When one resizes due to textLength - how to resize the other one to the same character size