Android:如何将接近警报设置为仅在退出时或仅在进入该位置时触发

时间:2013-03-03 23:46:10

标签: android alert locationmanager proximity

我正在开发一个带有提醒功能的ToDo应用程序(按时间和地点),我可以让用户选择是否希望按位置提醒,以便在进入时提醒该位置或退出该位置时。 我怎么能这样做?

我知道 KEY_PROXIMITY_ENTERING ,但我不知道如何使用它 请帮忙... 提前谢谢

2 个答案:

答案 0 :(得分: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>

答案 1 :(得分:0)

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