Android 使用 requestLocationUpdates() 时如何从意图中获取信息
Android how to get information from intent when using requestLocationUpdates()
我正在尝试在后台获取我的位置,我了解到您为此需要一个待定意向。
我的位置接收器似乎确实按照我在位置请求中指定的每 10 秒接收一次 Intent。
我的问题是我在位置接收器中的位置始终为空...
感谢您的帮助:)
这是我的代码:
/**
* 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");
}
}
您使用了错误的常量 - 而不是 LocationManager.KEY_LOCATION_CHANGED
(解析为 "location"
),根据 requestLocationUpdates()
documentation, you should use FusedLocationProviderApi.KEY_LOCATION_CHANGED
(解析为 "com.google.android.location.LOCATION"
)
我正在尝试在后台获取我的位置,我了解到您为此需要一个待定意向。
我的位置接收器似乎确实按照我在位置请求中指定的每 10 秒接收一次 Intent。
我的问题是我在位置接收器中的位置始终为空...
感谢您的帮助:)
这是我的代码:
/**
* 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");
}
}
您使用了错误的常量 - 而不是 LocationManager.KEY_LOCATION_CHANGED
(解析为 "location"
),根据 requestLocationUpdates()
documentation, you should use FusedLocationProviderApi.KEY_LOCATION_CHANGED
(解析为 "com.google.android.location.LOCATION"
)