android 用包名、类名跳转到系统设置界面(任一界面)

tech2023-08-22  94

一般情况下,打开系统某个界面,使用系统唯一标识:Settings.xxx 但是在有些不同的机器不一定适用。 也要查询不同界面对应的唯一标识;具体可以查看:Android中跳转到系统设置界面大全

cmd进入命令行界面,使用adb shell dumpsys window | findstr mCurrentFocus 命令,查看当前运行的包名和Activity更清晰一些。 例如:上面的进入电池界面,对应的包名和类名为:“com.android.settings/.Settings$PowerUsageSummaryActivity”

进入代码:

Intent intent = new Intent(Intent.ACTION_MAIN); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intent.addCategory(Intent.CATEGORY_LAUNCHER); ComponentName cn = ComponentName.unflattenFromString("com.android.settings/.Settings$PowerUsageSummaryActivity"); intent.setComponent(cn); startActivity(intent);

上面的包名和类名,不同机型对应的内置系统也不一样。按照自己命令行界面输出结果跳转。

将自己应用直接加入省电白名单中:(这个我为试成功,但是思路值得推荐)

public void ignoreBatteryOptimization(Activity activity) { PowerManager powerManager = (PowerManager) getSystemService(POWER_SERVICE); boolean hasIgnored = false; if (android.os.Build.VERSION.SDK_INT >= android.os.Build.VERSION_CODES.M) { hasIgnored = powerManager.isIgnoringBatteryOptimizations(activity.getPackageName()); // 判断当前APP是否有加入电池优化的白名单,如果没有,弹出加入电池优化的白名单的设置对话框。 if(!hasIgnored) { @SuppressLint("BatteryLife") Intent intent = new Intent(Settings.ACTION_REQUEST_IGNORE_BATTERY_OPTIMIZATIONS); intent.setData(Uri.parse("package:"+activity.getPackageName())); startActivity(intent); } } }

第一种是用户自己手动设置,第二种是自已跳出来让用户授权。

最新回复(0)