3

我正在开发一个带有提醒(按时间和按位置)的 ToDo 应用程序,问题是我让用户选择是否希望按位置提醒在他进入该位置或离开该位置时发出警报。我怎样才能做到这一点??

我知道KEY_PROXIMITY_ENTERING但我不知道如何使用它请帮助...thanx提前

4

2 回答 2

6

KEY_PROXIMITY_ENTERING 通常用于判断设备是进入还是退出。

您应该首先注册到 LocationManager

LocationManager locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
Intent intent = new Intent(Constants.ACTION_PROXIMITY_ALERT);
PendingIntent pendingIntent = PendingIntent.getService(this, 0, intent, 0);

locationManager.addProximityAlert(location.getLatitude(),
    location.getLongitude(), location.getRadius(), -1, pendingIntent);

当检测到进入或退出警报区域时,PendingIntent 将用于生成要触发的 Intent。您应该定义一个广播接收器来接收从 LocationManager 发送的广播:

public class YourReceiver 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, "entering", Toast.LENGTH_SHORT).show();
        } else {
            Toast.makeText(context, "exiting", Toast.LENGTH_SHORT).show();
        }
    }
}

然后在清单中注册接收器。

<receiver android:name="yourpackage.YourReceiver " >
    <intent-filter>
        <action android:name="ACTION_PROXIMITY_ALERT" />
    </intent-filter>
</receiver>
于 2013-03-04T06:19:41.817 回答
0

你可以在这里找到一个很好的例子: http ://www.java2s.com/Code/Android/Core-Class/ProximityAlertDemo.htm

于 2013-03-04T06:04:50.963 回答