如何在一定时间后停止 requestLocationUpdates()?
How to stop requestLocationUpdates() after a certain amount of time?
在我的 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();
而 locationProvider
和 locationRequest
在我的片段的 onAttach()
方法中初始化,该方法也实现了 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 锁定。
我会建议你两种方法,你应该怎么做。
第一个比较简单,但我不确定它的效果如何,因为我只将它用于被动位置更新。根据您的要求使用 expiration
,在该时间过期后,定位服务应该会自动退出。
locationRequest.setExpirationDuration(Constants.LOCATION_TIMEOUT_MS);
这个第二个是使用正确的方法,就是removeLocationUpdates
locationProvider.removeLocationUpdates(
mGoogleApiClient,
(LocationListener) thisFragment);
在我的 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();
而 locationProvider
和 locationRequest
在我的片段的 onAttach()
方法中初始化,该方法也实现了 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 锁定。
我会建议你两种方法,你应该怎么做。
第一个比较简单,但我不确定它的效果如何,因为我只将它用于被动位置更新。根据您的要求使用
expiration
,在该时间过期后,定位服务应该会自动退出。locationRequest.setExpirationDuration(Constants.LOCATION_TIMEOUT_MS);
这个第二个是使用正确的方法,就是
removeLocationUpdates
locationProvider.removeLocationUpdates( mGoogleApiClient, (LocationListener) thisFragment);