gpt4 book ai didi

android - 如何在一定时间后停止 requestLocationUpdates()?

转载 作者:行者123 更新时间:2023-11-29 20:35:10 25 4
gpt4 key购买 nike

在我的 Android 应用程序中,我使用 GoogleApiClient 来处理位置服务。当我按以下方式调用 requestLocationUpdates() 时一切正常:

locationProvider.requestLocationUpdates(mGoogleApiClient, locationRequest, (LocationListener) thisFragment);

其中 mGoogleApiClient 在我的 Activity 的 onCreate() 方法中初始化:

private GoogleApiClient mGoogleApiClient;
[...]

// onCreate() method in my activity
mGoogleApiClient = new GoogleApiClient.Builder(this)
.addApi(Plus.API, Plus.PlusOptions.builder().build())
.addApi(LocationServices.API)
.addScope(new Scope("email"))
.addConnectionCallbacks(this)
.addOnConnectionFailedListener(this)
.build();

虽然 locationProviderlocationRequest 在我的 fragment 的 onAttach() 方法中初始化,该 fragment 也实现了 com.google.android。 gms.location.LocationListener:

//onAttach() method in my fragment
this.locationProvider = LocationServices.FusedLocationApi;

this.locationRequest = new LocationRequest();
this.locationRequest
.setInterval(Constants.GOOGLE_LOCATION_INTERVAL)
.setFastestInterval(Constants.GOOGLE_FASTEST_LOCATION_INTERVAL)
.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);

问题是,有时用户可能会要求在室内环境中检索她的位置,所以我想在一定时间后终止 requestLocationUpdates() 请求。

到目前为止,我尝试了以下解决方案,但没有成功:

1) 使用 Looper 和 Handler。实际上,此解决方案与旧的 LocationManager 配合得很好。

Looper looper = Looper.myLooper();
Handler handler = new Handler(looper);

handler.postDelayed(new Runnable() {
@Override
public void run() {
locationProvider.requestLocationUpdates(mGoogleApiClient, locationRequest, (LocationListener) thisFragment, looper);
}
}, Constants.LOCATION_TIMEOUT_MS);

2) 只使用处理程序

Handler handler = new Handler();

handler.postDelayed(new Runnable() {
@Override
public void run() {
locationProvider.requestLocationUpdates(mGoogleApiClient, locationRequest, (LocationListener) thisFragment);
}
}, Constants.LOCATION_TIMEOUT_MS);

但是,在这两种情况下,超时(由 Constants.LOCATION_TIMEOUT_MS 表示)永不过期。 GPS 服务一直在不停地工作。

最佳答案

首先这两个代码是相同的:

Looper looper = Looper.myLooper();
Handler handler = new Handler(looper);

Handler handler = new Handler();

如果您查看源代码,您会发现 Handler 的空构造函数在内部使用 Looper.myLooper();

我不确定您认为这会在哪里取消请求,在时间过去后,您再次调用 requestLocationUpdates。所以是的,它将继续尝试获取 GPS 锁定。

我会建议你两种方法,你应该怎么做。

  1. 第一个比较简单,但我不确定它的效果如何,因为我只将它用于被动位置更新。根据您的请求使用expiration,在该过期时间之后,定位服务应该会自动退出。

    locationRequest.setExpirationDuration(Constants.LOCATION_TIMEOUT_MS);
  2. 第二个是使用正确的方法,即removeLocationUpdates

    locationProvider.removeLocationUpdates(
    mGoogleApiClient,
    (LocationListener) thisFragment);

关于android - 如何在一定时间后停止 requestLocationUpdates()?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31472613/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com