我正在使用Google Play服务融合提供商通过locationclient获取位置。
@Override
public void onConnected(Bundle dataBundle) {
mLocationRequest.setPriority(
LocationRequest.PRIORITY_HIGH_ACCURACY);
// Set the update interval to 5 seconds
mLocationRequest.setInterval(UPDATE_INTERVAL);
// Set the fastest update interval to 1 second
mLocationRequest.setFastestInterval(FASTEST_INTERVAL);
mLocationClient.requestLocationUpdates(mLocationRequest, this);
}
清单
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
问题 我的应用程序无法在&#34; OUTDOOR&#34;地点 当GOOGLE地图自动触发GPS在室外位置时。
我还检查了手机中的lcoation设置,检查了所有选项
我错过了获取GPS更新的一些事情