Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何检查我的应用程序是否已在其设置中从电池优化(打盹模式)列入白名单?谢谢你。
使用以下代码查看是否将特定包列入白名单以进行电池优化:
PowerManager pm = (PowerManager) context.getSystemService(Context.POWER_SERVICE); boolean status = pm.isIgnoringBatteryOptimizations(packageName); Log.d("Optimization Status : "+status );
参考:PowerManager.isIgnoringBatteryOptimizations(Package)