Android:发布 GPS
我的 Activity 实现了 LocationListener,如下所示。
public class LoginActivity extends Activity implements LocationListener {}
我的 LocationManager 如下所示,
mlocManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
mlocManager.requestLocationUpdates( LocationManager.GPS_PROVIDER, MINIMUM_TIME_BETWEEN_UPDATES, MINIMUM_DISTANCE_CHANGE_FOR_UPDATES, this);
我可以使用 about 方法获取当前的 GPS 位置。
现在我需要在 Activity 关闭时释放 GPS。
所以我的 onPause 方法如下。
@Override
protected void onPause() {
mlocManager.removeUpdates(this);
//System.exit(0);
super.onPause();
}
但这并没有释放 GPS。有人可以帮我吗。提前致谢。
My Activity implements LocationListener as below
public class LoginActivity extends Activity implements LocationListener {}
My LocationManager goes as below
mlocManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
mlocManager.requestLocationUpdates( LocationManager.GPS_PROVIDER, MINIMUM_TIME_BETWEEN_UPDATES, MINIMUM_DISTANCE_CHANGE_FOR_UPDATES, this);
I can get the current GPS location using the method about.
Now I need to release the GPS when the Activity closes.
so my onPause method goes as below.
@Override
protected void onPause() {
mlocManager.removeUpdates(this);
//System.exit(0);
super.onPause();
}
But this doesn't release the GPS. Can someone help me out. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我可能有另一个位置监听器调用了 requestLocationUpdates() 。
如果不是,您应该在
finish()
、onStop()
和onDestroy()
中调用removeUpdates()
只是为了确保。那应该可以解决问题。I could be that there is another Location Listener that has called
requestLocationUpdates()
.If not you should call
removeUpdates()
infinish()
,onStop()
andonDestroy()
just to make sure. That should do the trick.试试这个,然后让我知道会发生什么。
现在我需要在 Activity 关闭时释放 GPS。
然后将此代码放入 Activity 的
onStop()
或onDestroy()
中。Try this, and let me know what happen.
Now I need to release the GPS when the Activity closes.
Then put this code in
onStop()
oronDestroy()
of activity.