我正在做一个简单的位置提醒,用户在地图上选择一个地址,然后我用它创建一个proximityAlert。
我的第一个想法是只搜索一个新位置,如果它甚至可能在那个时间范围内到达目的地。Fe 如果目标在 80 英里之外,那么不断查询该位置是没有意义的,因为开车大约需要一个小时才能到达。我在这里找到了另一种方法 ,它只在驾驶时获取位置更新。
- 我想获得有关这两种方法的一些信息。与使用proximityAlert相比,这真的可以节省电池寿命吗?
- 如果我自己进行这些计算,我是否必须实现我自己的proximityAlert() 版本?
- 接收位置更新的 LocationIntentService 是一个单独的类:我如何访问位置客户端以删除更新和/或请求位置更新?
- 我必须使用 AlarmManager 来唤醒位置更新吗?
我几乎被困在 onHandleIntent() 方法中:我不确定在那里做什么。我很高兴有任何意见
public class MyMapActivity extends Activity implements OnInfoWindowClickListener,
OnMarkerClickListener, OnMapLongClickListener,
GooglePlayServicesClient.ConnectionCallbacks,
GooglePlayServicesClient.OnConnectionFailedListener
{
private LocationClient mLocationClient;
private PendingIntent mPendingIntent = null;
private LocationRequest mLocationRequest = LocationRequest.create()
.setInterval(5000) // 5 seconds
.setFastestInterval(16) // 16ms = 60fps
.setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY);
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_gmaps);
mLocationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
map = ((MapFragment) getFragmentManager().findFragmentById(R.id.map)).getMap();
map.setMyLocationEnabled(true);
map.setMapType(GoogleMap.MAP_TYPE_HYBRID);
map.setInfoWindowAdapter(new MyInfoWindowAdapter(this, getLayoutInflater()));
map.setOnMapLongClickListener(this);
map.setOnInfoWindowClickListener(this);
map.setOnMarkerClickListener(this);
String locationProvider = findBestLocationProvider();
if(locationProvider != null) {
mMyLocation = mLocationManager.getLastKnownLocation(locationProvider);
}
Intent intent = new Intent( getApplicationContext(), LocationIntentService.class);
intent.putExtra(LOCATION_KEY, mMyLocation);
mPendingIntent = PendingIntent.getService(getApplicationContext(), 0, intent, PendingIntent.FLAG_UPDATE_CURRENT);
}
@Override
public void onConnected(Bundle arg0) {
Log.d(TAG, "onConnected()");
if(mLocationClient != null) {
mLocationClient.requestLocationUpdates(mLocationRequest, mPendingIntent);
}
}
@Override
public void onDisconnected() {
Log.d(TAG, "onDisconnected()");
}
}
服务:
public class LocationIntentService extends IntentService {
private Location mLocation = null;
@Override
protected void onHandleIntent(Intent intent) {
Log.d(tag, "caught an intent");
if(intent.hasExtra(MyMapActivity.LOCATION_KEY)) {
Location loc = (Location) intent.getExtras().get(MyMapActivity.LOCATION_KEY);
Log.d(tag, "onHandleIntent(): new location: " + loc.toString());
// do calculation here.
// how would I get access to the location client to removeUpdates and/or requestLocationUpdates
// remove locationUpdates and start Alarm to start locationUpdates in X minutes
mLocation = loc;
}
}