hi there can anybody give me a sample code for get location for every five minutes please i have tried and i can get location once by cliking on button, but i need it to be disp
I used runnable for doing this,
final Runnable r = new Runnable() { public void run() { //Here add your code location listener call handler.postDelayed(this, 300000 ); } }; handler.postDelayed(r, 300000 );