As you all might be aware the Android L has introduced a new feature called battery saver mode. I want direct the user from my app to that specific activity in the Settings page. How should I go about doing that?
E.g.: For starting a "Data Usage Activity" in settings page, I do this
Intent i = new Intent();
i.setComponent(new ComponentName("com.android.settings", "com.android.settings.Settings$DataUsageSummaryActivity"));
startActivityForResult(i, 0);
How can I do something similar for going to the Battery saver page? Settings -> Battery -> (Options on top right) -> Battery Saver
Thanks