在我的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
表示)永远不会过期。
首先这两个代码是相同的:
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);