im new in android im stuck at a point, i have stored locations in sqlite database and retrieve using a cursor.i want to use these locations for proximity alert/notification.eg i have stored a shopping mall when i will be near enough of this mall a notification pop up on screen. unbale to start how to get alters on multiple locations and how to keep alive tracking for updated location and get notify after application is closed.please give me any start. i have got all stored locations in variable :

private void refreshLocations() {
    try{
     String pla_key = String.valueOf(listforkey2);
    locationcursor=sql.ListWithPlaceonmap(pla_key);

            if (locationcursor.moveToFirst())
              do { 
                   Lati = (int) (locationcursor.getDouble(locationcursor.getColumnIndex("Place_liti")));
                   Longi = (int) (locationcursor.getDouble(locationcursor.getColumnIndex("Place_longi")));


              } while(locationcursor.moveToNext());

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

i m also getting locations updated continually :

public void startButton(View view) {

   locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 0, 0, locationListener);

}

i have an other method in my activity for updated locations:

public void recordLocation(Location loc) {

    Toast.makeText(tracking_to_do.this,"Lat: " + String.valueOf(loc.getLatitude()) + " Long: " + String.valueOf(loc.getLongitude()),Toast.LENGTH_SHORT).show();


}

how i can arrange things for setting the alerts .

link|improve this question

75% accept rate
what do you mean by alters here? – Reno Dec 5 '11 at 11:38
im sorry my mistake that is proximity alert. – android-xx Dec 5 '11 at 14:58
Do you mean you want to compare values coming in from gps to values in a database and alert if they are close enough? Perhaps you should edit your question with an example or scenario of what you want to happen, and show what you have tried – Craigy Dec 5 '11 at 16:28
feedback

1 Answer

up vote 0 down vote accepted

I am trying to do the exact same thing and have the same question. I think it can be done using the 'Proximity Alert' in Android. I found a few interesting articles regarding the exact same thing:

http://www.javacodegeeks.com/2011/01/android-proximity-alerts-tutorial.html

http://blog.brianbuikema.com/2010/07/part-1-developing-proximity-alerts-for-mobile-applications-using-the-android-platform/

Hope that helps!

link|improve this answer
@ Amol thanks for your answer i have done my project and these two links were really helpful i accepted your answer :) – android-xx Mar 30 at 14:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.