我想通过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华为设备,我如何检索忽略电池优化的类路径,如“受保护的应用程序”?
华为牛轧糖设备上的ACTION_IGNORE_BATTERY_OPTIMIZATION_SETTINGS操作可以检索忽略电池优化菜单
intent = new Intent(Settings.ACTION_IGNORE_BATTERY_OPTIMIZATION_SETTINGS);
startActivity(intent);