华为系统管理器类名称检索特定的屏幕/活动

时间:2018-03-01 06:31:00

标签: android android-intent huawei

我想在使用android nougat的华为设备上以编程方式加载忽略电池优化菜单。在android Lolipop / Marshmellow huawei设备中,我可以直接使用以下代码段转到受保护的应用菜单:

Intent intent = new Intent();
            intent.setComponent(new ComponentName("com.huawei.systemmanager", "com.huawei.systemmanager.optimize.process.ProtectActivity"));
            startActivity(intent); 

对于Android Nougat华为设备,如何检索忽略电池优化的类路径,例如“受保护的应用程序”?

1 个答案:

答案 0 :(得分:0)

忽略电池优化菜单可以通过华为牛轧糖设备上的 ACTION_IGNORE_BATTERY_OPTIMIZATION_SETTINGS 操作进行检索

intent = new Intent(Settings.ACTION_IGNORE_BATTERY_OPTIMIZATION_SETTINGS);
startActivity(intent);