在我的Android应用程序中,我使用GoogleApiClient
来处理位置服务。当我以下列方式致电requestLocationUpdates()
时,一切运作良好:
locationProvider.requestLocationUpdates(mGoogleApiClient, locationRequest, (LocationListener) thisFragment);
mGoogleApiClient
在我的活动的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)使用循环器和处理程序。实际上,这个解决方案适用于旧的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服务一直在无休止地工作。
答案 0 :(得分:2)
首先,这两个代码是相同的:
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);