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.
应用程序停止时我需要关闭 gps,gps 全局使用并且在每个 Activity 中使用,应用程序关闭时如何获取事件?
使用在 onPause 上删除更新它可以节省电池电量
@Override protected void onPause() { super.onPause(); if(locationmanager != null) { locationmanager .removeUpdates(locationlistner); } locationlistner = null; }