我正在开发一个带有提醒(按时间和按位置)的 ToDo 应用程序,问题是我让用户选择是否希望按位置提醒在他进入该位置或离开该位置时发出警报。我怎样才能做到这一点??
我知道KEY_PROXIMITY_ENTERING但我不知道如何使用它请帮助...thanx提前
我正在开发一个带有提醒(按时间和按位置)的 ToDo 应用程序,问题是我让用户选择是否希望按位置提醒在他进入该位置或离开该位置时发出警报。我怎样才能做到这一点??
我知道KEY_PROXIMITY_ENTERING但我不知道如何使用它请帮助...thanx提前
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>