3

在我正在开发的应用程序中,其中一项功能是在用户到达他们之前设置的位置时通知用户。

下面的代码在 Activity 的 addProximityAlert 中:

final Intent intent = new Intent(PROX_ALERT_INTENT);
final PendingIntent pendingIntent = PendingIntent.getBroadcast(
        InfoActivity.this, 0, intent, PendingIntent.FLAG_ONE_SHOT);
LocationManager locationManager = (LocationManager) this
        .getSystemService(Context.LOCATION_SERVICE);
locationManager.addProximityAlert(18.7726271, 98.9738381, 5000, -1,
        pendingIntent);
this.locationReminderReceiver = new LocationReminderReceiver();
final IntentFilter filter = new IntentFilter(PROX_ALERT_INTENT);
this.registerReceiver(this.locationReminderReceiver, filter);

@Override
protected void onPause() {
    super.onPause();
    if (this.locationReminderReceiver != null) {
        Log.i("unregisterReceiver", "unregisterReceiver");
        this.unregisterReceiver(this.locationReminderReceiver);
    }
}

这是接收器:

public class LocationReminderReceiver extends BroadcastReceiver {

@Override
public void onReceive(Context context, Intent intent) {

    final String key = LocationManager.KEY_PROXIMITY_ENTERING;
    final Boolean entering = intent.getBooleanExtra(key, false);

    if (entering) {
        Toast.makeText(context, "LocationReminderReceiver entering", Toast.LENGTH_SHORT).show();
        Log.i("LocationReminderReceiver", "entering");
    } else {
        Toast.makeText(context, "LocationReminderReceiver exiting", Toast.LENGTH_SHORT).show();
        Log.i("LocationReminderReceiver", "exiting");
    }
}
}

unregisterReceiver它工作正常,但我每次销毁 Activity 时都需要调用- 这意味着我的应用程序不再通知用户。但是我想在用户靠近该位置时通知用户,直到他取消,或者即使他们关闭应用程序也已经收到通知。

我错过了什么?

4

2 回答 2

3

如果用户关闭您的活动,您确实应该取消注册您的位置监听器。

听起来您需要将应用程序的一部分(监控位置并提醒用户的位)移动到后台服务,以便即使在用户关闭应用程序后它也可以继续运行。

于 2012-09-28T11:01:13.297 回答
2

我需要做的就是在清单中定义接收器

然后我不再需要在 Activity 中注册/注销

  <receiver android:name="th.clbs.android.broadcastreceiver.LocationReminderReceiver" >
        <intent-filter>
            <action android:name="th.co.clbs.action.LOCATION_REMINDER" />
        </intent-filter>
    </receiver>
于 2012-10-25T05:54:16.260 回答