Android:发布 GPS

发布于 2024-12-17 09:11:42 字数 697 浏览 1 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

我们只是彼此的过ke 2024-12-24 09:11:42

我可能有另一个位置监听器调用了 requestLocationUpdates() 。

如果不是,您应该在 finish()onStop()onDestroy() 中调用 removeUpdates() 只是为了确保。那应该可以解决问题。

I could be that there is another Location Listener that has called requestLocationUpdates().

If not you should call removeUpdates() in finish(), onStop() and onDestroy() just to make sure. That should do the trick.

没有你我更好 2024-12-24 09:11:42

试试这个,然后让我知道会发生什么。

@Override
    protected void onPause() {
       super.onPause();
            mlocManager.removeUpdates(this);
            mlocManager.removeGpsStatusListener(this);
    }

现在我需要在 Activity 关闭时释放 GPS。

然后将此代码放入 Activity 的 onStop()onDestroy() 中。

Try this, and let me know what happen.

@Override
    protected void onPause() {
       super.onPause();
            mlocManager.removeUpdates(this);
            mlocManager.removeGpsStatusListener(this);
    }

Now I need to release the GPS when the Activity closes.

Then put this code in onStop() or onDestroy() of activity.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文