我正在使用新的 FusedLocationService,但是,尽管我在室内得到纬度和经度,但我没有看到 GPS 信号被获取(通知栏中的小 gps 点没有出现)。
我正在使用适用于位置服务的此处的示例
我不明白的是为什么尽管启用了 GPS 却没有搜索 GPS 信号(但我正在获取坐标,我想我是从 wifi 或 cell id 获取的)
在我的应用程序类中,我创建了一个服务(这是一个服务管理器,它反过来创建另一个服务(以检索位置)。我将服务管理器作为上下文发送给 LocationClient,因为它是一个上下文(因为它是一个服务)。
提前致谢。吉列尔莫。
更新 如果我在启用 GPS 的情况下关闭手机定位服务中的使用无线网络选项,我根本无法获得位置。因此,FusedLocationService 和 GPS 发生了一些事情。
我将添加代码以便更好地理解
在Application类中,我使用来自以下位置的 LocalService 示例:here
private ServicesManager mBoundService;
private boolean mIsBound;
private ServiceConnection mConnectionToServicesManager = new ServiceConnection() {
public void onServiceConnected(ComponentName className, IBinder service) {
mBoundService = ((ServicesManager.LocalBinder)service).getService();
servicesManager = mBoundService;
}
public void onServiceDisconnected(ComponentName className) {
mBoundService = null;
}
};
void doBindServiceManagerService() {
bindService(new Intent(this, ServicesManager.class), mConnectionToServicesManager, Context.BIND_AUTO_CREATE);
mIsBound = true;
}
void doUnbindService() {
if (mIsBound) {
unbindService(mConnectionToServicesManager);
mIsBound = false;
}
}
然后ServicesManager扩展 Service 并在构造函数中我写这个:
fusedLocationService = new FusedLocationService(this);
然后我打电话给:
fusedLocationService.startListeningLocationUpdates(this);
这是FusedLocationService类中startListeningLocationUpdates的实现
public boolean startListeningLocationUpdates(Context context) {
if (!GdpTesisApplication.IsGooglePlayServicesAvailable) {
return false;
}
mDetectionRequester.requestUpdates();
FusedLocationService.IsServiceRunning = true;
return true;
}
requestUpdates() 尝试连接到 GooglePlayServices
private void requestConnection() {
getFusedLocationClient().connect();
}
@Override
public void onConnected(Bundle arg0) {
continueRequestLocationUpdates();
}
private void continueRequestLocationUpdates() {
locationrequest = LocationRequest.create();
locationrequest.setInterval(LocationUtils.DETECTION_INTERVAL_MILLISECONDS);
getFusedLocationClient().requestLocationUpdates(locationrequest, createRequestPendingIntent());
}
private PendingIntent createRequestPendingIntent() {
if (null != getRequestPendingIntent()) {
return mFusedLocationPendingIntent;
} else {
Intent intent = new Intent(mContext, FusedLocationIntentService.class);
PendingIntent pendingIntent = PendingIntent.getService(mContext, 1, intent, PendingIntent.FLAG_UPDATE_CURRENT);
setRequestPendingIntent(pendingIntent);
return pendingIntent;
}
}
最后我有一个 IntentService ,它 onHandleIntent 提取位置并显示它:
Location location = intent.getParcelableExtra(LocationClient.KEY_LOCATION_CHANGED);
我不知道为什么 GPS 不工作。任何想法?