0

我正在 LBS 上做一个应用程序,如果用户在特定地理点的一公里范围内,我想做的是弹出一个窗口。

我使用的代码是

 Intent intent = new Intent(PROX_ALERT_INTENT);
    PendingIntent proximityIntent = PendingIntent.getBroadcast(this, 0, intent, 0);

    locationManager.addProximityAlert(
        latitude, // the latitude of the central point of the alert region
        longitude, // the longitude of the central point of the alert region
        POINT_RADIUS, // the radius of the central point of the alert region, in meters
        PROX_ALERT_EXPIRATION, // time for this proximity alert, in milliseconds, or -1 to indicate no expiration 
        proximityIntent // will be used to generate an Intent to fire when entry to or exit from the alert region is detected
   );

通过这个,我可以为一个位置设置警报,我想为多个位置创建它。

4

1 回答 1

1

对于这种情况,您必须使用广播接收器。

可能会帮助你..

于 2013-06-06T07:32:33.917 回答