我想在后台找到我的位置,我已经知道你需要一个Pending Intent。
我的位置接收器似乎每隔10秒收到一次意图,就像我在位置请求中指定的那样。
我的问题是我在位置接收器中的位置始终为空...
感谢您的帮助:))
这是我的代码:
/**
* Runs when a GoogleApiClient object successfully connects.
*/
@Override
public void onConnected(Bundle connectionHint) {
Intent mIntent = new Intent(context, LocationReceiver.class);
PendingIntent mPendingIntent = PendingIntent.getBroadcast(context, 42, mIntent, PendingIntent.FLAG_CANCEL_CURRENT);
LocationServices.FusedLocationApi.requestLocationUpdates(mGoogleApiClient, mLocationRequest, mPendingIntent);
}
以下是我的xml文件的一部分:
<receiver
android:name=".LocationReceiver"
android:enabled="true"
android:exported="true" >
<intent-filter>
<action android:name="com.myapp.databerries.LOCATION_READY" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</receiver>
这是我的LocationReciever文件:
public class LocationReceiver extends BroadcastReceiver {
public LocationReceiver() {
}
@Override
public void onReceive(Context context, Intent intent) {
Bundle b = intent.getExtras();
Location loc = (Location)b.get(android.location.LocationManager.KEY_LOCATION_CHANGED);
if (loc != null)
Log.d("hello", "location = " + loc.toString());
else
Log.d("hello", "location = null");
}
}
答案 0 :(得分:2)
您使用了错误的常量 - 而不是LocationManager.KEY_LOCATION_CHANGED
(解析为"location"
),requestLocationUpdates()
documentation,您应该使用FusedLocationProviderApi.KEY_LOCATION_CHANGED
(解析为{{} 1}})