今天我在地图中创建了一个应用程序,但是当电池保护程序打开时它会崩溃.
如何在每个设备上打开电池保护程序时检查事件,帮助我.谢谢
我尝试这个,但没有在API< 21中工作:
PowerManager powerManager = (PowerManager) this.getSystemService(Context.POWER_SERVICE); if ( powerManager.isPowerSaveMode()) { // Animations are disabled in power save mode,so just show a toast instead. Toast.makeText(customer_textReport.this,"Vui lòng tắt chế độ tiết kiệm pin",Toast.LENGTH_SHORT).show(); } else { Intent intentvitri = new Intent(customer_textReport.this,CustomerGetLocation.class); startActivityForResult(intentvitri,111); }
解决方法
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。