I want to load battery saver menu from an activity programmatically on Samsung J3 device with android lollipop. I have tried the following snippet:
Intent intent=new Intent(Settings.ACTION_BATTERY_SAVER_SETTINGS);
startActivity(intent);
but it throws ActivityNotFoundException.
any other way to programmatically load battery saver screen on J3 device?