I am developing an android application where i need to set multiple gps alerts at a one go on stored location in sq-lite , although im getting notification but seems that will not fire on all locations how would i set alerts for all locations.please help me out how i can do this. here is code that working for one location :

private void addProximityAlert(double latitude, double longitude) {
    try{
     String pla_key = String.valueOf(listforkey2);
    locationcursor=sql.ListWithPlaceonmap(pla_key);// here im fetching locations frm sqlite
            if (locationcursor.moveToFirst())
              do { 
                   Lati = (locationcursor.getFloat(locationcursor.getColumnIndex("Place_liti")));// assign in float verble
                   Longi =(locationcursor.getFloat(locationcursor.getColumnIndex("Place_longi")));
                 Intent intent = new Intent(PROXIMTY_ALERT_INTENT);
                 PendingIntent proximityIntent = PendingIntent.getBroadcast(this, 0, intent, 0);
                 locationManager.addProximityAlert(Lati, Longi, radius, expiration, proximityIntent);// alerts set here.
                 IntentFilter filter = new IntentFilter(PROXIMTY_ALERT_INTENT);
                  registerReceiver(new ProximityIntentReceiver(), filter);

              } while(locationcursor.moveToNext());

    }
    catch(Exception ex){
        ex.toString();
    }

} 

here is the call for function:

private void saveProximityAlertPoint() {
    Location location = locationManager.getLastKnownLocation(LocationManager.GPS_PROVIDER);
    if (location==null) {
        Toast.makeText(this, "No last known location. Aborting...", Toast.LENGTH_LONG).show();
        return;
    }

    addProximityAlert(location.getLatitude(), location.getLongitude());
}

this is my broadcast class:

public class ProximityIntentReceiver extends BroadcastReceiver {

    private static final int NOTIFICATION_ID = 1000;

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

        String key = LocationManager.KEY_PROXIMITY_ENTERING;

        Boolean entering = intent.getBooleanExtra(key, false);

        if (entering) {
            Log.d(getClass().getSimpleName(), "entering");
        }
        else {
            Log.d(getClass().getSimpleName(), "exiting");
        }

        NotificationManager notificationManager = 
            (NotificationManager) context.getSystemService(Context.NOTIFICATION_SERVICE);

        PendingIntent pendingIntent = PendingIntent.getActivity(context, 0, null, 0);       

        Notification notification = createNotification();
        notification.setLatestEventInfo(context, "Proximity Alert!", "You are near your point of interest.", pendingIntent);

        notificationManager.notify(NOTIFICATION_ID, notification);

    }

    private Notification createNotification() {
        Notification notification = new Notification();

        notification.icon = R.drawable.ic_menu_notifications;
        notification.when = System.currentTimeMillis();

        notification.flags |= Notification.FLAG_AUTO_CANCEL;
        notification.flags |= Notification.FLAG_SHOW_LIGHTS;

        notification.defaults |= Notification.DEFAULT_VIBRATE;
        notification.defaults |= Notification.DEFAULT_LIGHTS;

        notification.ledARGB = Color.WHITE;
        notification.ledOnMS = 1500;
        notification.ledOffMS = 1500;

        return notification;
    }

}
link|improve this question

67% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.