首页 > 解决方案 > Intent to Battery Launch 部分在华为与奥利奥

问题描述

我需要将使用 Android 8“奥利奥”的华为用户重定向到新部分设置 -> 电池 -> 启动

任何人都知道如何构建意图或我可以在哪里找到创建它的信息(包和类)?

标签: android-intentlaunchbatteryandroid-8.0-oreohuawei-mobile-services

解决方案


我遇到了同样的问题并使用可访问性我尝试让类名或活动名称传递意图并打开设置->电池->启动

在奥利奥华为荣耀 9 Lite 上测试:

Intent intent = new Intent();
intent.setClassName("com.huawei.systemmanager", "com.huawei.systemmanager.appcontrol.activity.StartupAppControlActivity");
startActivity(intent);

它有点晚了,但也许可以帮助某人并节省时间。


推荐阅读