Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8170299
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T21:06:17+00:00 2026-06-06T21:06:17+00:00

I am new user to Stackoverflow and this is my first question… Question is…

  • 0

I am new user to Stackoverflow and this is my first question…

Question is…

How to get the periodic updates of location details? I have tried with Service class and run thread inside it but,This is called only once.

Can any one suggest me what I am doing wrong? Thank you.
Here is my code

   public class MyService extends Service 
{
String GPS_FILTER = "";
     Thread triggerService;
     LocationManager lm;
     GpsListener gpsLocationListener;
     boolean isRunning = true;
     @Override
     public void onCreate() 
     {
           // TODO Auto-generated method stub
           super.onCreate();
           Toast.makeText(getApplicationContext(), "Hello",Toast.LENGTH_LONG).show();
           GPS_FILTER = "MyGPSLocation";

     }

     @Override
     public void onStart(Intent intent, int startId) {
           // TODO Auto-generated method stub
           super.onStart(intent, startId);          
           triggerService = new Thread(new Runnable(){
                 public void run(){
                       try{
                             Looper.prepare();//Initialize the current thread as a looper.
                             lm = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
                             Toast.makeText(getApplicationContext(), "Hello1",Toast.LENGTH_LONG).show();
                             gpsLocationListener = new GpsListener();
                             long minTime = 30000; // 5 sec...
                             float minDistance = 10;
                             lm.requestLocationUpdates(LocationManager.GPS_PROVIDER, minTime,
                                         minDistance, gpsLocationListener);
                             Looper.loop();
                       }catch(Exception ex){
                             System.out.println("Exception in triggerService Thread -- "+ex);
                       }
                 }
           }, "myLocationThread");
           triggerService.start();
     }

     @Override
     public void onDestroy() {
           // TODO Auto-generated method stub
           super.onDestroy();
           removeGpsListener();
     }

     @Override
     public IBinder onBind(Intent intent) {
           // TODO Auto-generated method stub
           return null;
     }

     private void removeGpsListener(){
           try{
                 lm.removeUpdates(gpsLocationListener);
           }
           catch(Exception ex){
                 System.out.println("Exception in GPSService --- "+ex);
           }
     }

     class GpsListener implements LocationListener{
           public void onLocationChanged(Location location) {
                 // TODO Auto-generated method stub
                 double latitude = location.getLatitude();
                 double longitude = location.getLongitude();
                 sendBroadcast(filterRes);
                 postdata();
           }**

           public void onProviderDisabled(String provider) {
                 // TODO Auto-generated method stub

           }

           public void onProviderEnabled(String provider) {
                 // TODO Auto-generated method stub

           }

           public void onStatusChanged(String provider, int status, Bundle extras) {
                 // TODO Auto-generated method stub

           }

     }
    }

My updated answer
This Call to service class

 Calendar cur_cal = Calendar.getInstance();
   cur_cal.setTimeInMillis(System.currentTimeMillis());
   Intent intent = new Intent(this, MyService.class);
   PendingIntent pintent = PendingIntent.getService(login.this, 0, intent, 0);
   AlarmManager alarm = (AlarmManager)getSystemService(Context.ALARM_SERVICE);


public class MyService extends Service 
{
     String GPS_FILTER = "";
     Thread triggerService;
     LocationListener locationListener;
     LocationManager lm;
     private static final long MINIMUM_DISTANCE_CHANGE_FOR_UPDATES = 1000; // in Meters
     private static final long MINIMUM_TIME_BETWEEN_UPDATES = 1000*60; // in Milliseconds
     protected LocationManager locationManager;
     boolean isRunning = true;
     @Override
     public void onCreate() 
     {
           // TODO Auto-generated method stub
           super.onCreate();
           GPS_FILTER = "MyGPSLocation";
//           locationManager = (LocationManager) getSystemService(Context.LOCATION_SERVICE);
//           locationManager.requestLocationUpdates(
//                   LocationManager.GPS_PROVIDER, 
//                   MINIMUM_TIME_BETWEEN_UPDATES, 
//                   MINIMUM_DISTANCE_CHANGE_FOR_UPDATES,
//                   new MyLocationListener());
     }

     @Override
     public void onStart(Intent intent, int startId)
     {
           // TODO Auto-generated method stub
           super.onStart(intent, startId);     
           turnGPSOn();
           Toast.makeText(getApplicationContext(), "Hello1",Toast.LENGTH_LONG).show();
           LocationManager locationManager = (LocationManager)getSystemService(Context.LOCATION_SERVICE);
           locationListener = new MyLocationListener();
           locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER,MINIMUM_TIME_BETWEEN_UPDATES, 1.0f, locationListener);

     }

     @Override
     public void onDestroy() {
           // TODO Auto-generated method stub
           super.onDestroy();
          // removeGpsListener();
     }

     @Override
     public IBinder onBind(Intent intent) {
           // TODO Auto-generated method stub
           return null;
     }

//     private void removeGpsListener(){
//           try{
//                 lm.removeUpdates(locationManager);
//           }
//           catch(Exception ex){
//                 System.out.println("Exception in GPSService --- "+ex);
//           }
//     }


     private class MyLocationListener implements LocationListener
     {

         public void onLocationChanged(Location location) 
         {
            postdata(location.getLatitude(),location.getLongitude());
             String message = String.format(
                     "New Location \n Longitude: %1$s \n Latitude: %2$s",
                     location.getLongitude(), location.getLatitude()
             );
             Toast.makeText(MyService.this, message, Toast.LENGTH_LONG).show();
             turnGPSOnOff();
         }

         public void onStatusChanged(String s, int i, Bundle b) {
//              Toast.makeText(MyService.this, "Provider status changed",
//                     Toast.LENGTH_LONG).show();
         }

         public void onProviderDisabled(String s) {
//             Toast.makeText(MyService.this,
//                     "Provider disabled by the user. GPS turned off",
//                     Toast.LENGTH_LONG).show();
         }

         public void onProviderEnabled(String s) {
//             Toast.makeText(MyService.this,
//                     "Provider enabled by the user. GPS turned on",
//                     Toast.LENGTH_LONG).show();
         }

     }
       alarm.setRepeating(AlarmManager.RTC_WAKEUP, cur_cal.getTimeInMillis(), 60*1000, pintent);
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-06T21:06:18+00:00Added an answer on June 6, 2026 at 9:06 pm

    Try Puuting things that you want to do inside run of this class,
    This thread runs every 5 Seconds,

    You can modify it as you want.

    public class PeriodicChecker extends Thread
        {
            @Override
            public void run()
            {
                while(true) {
                   System.out.println("Thread is doing something");
                   //Put Your code here
                   Thread.sleep(5000);
                }
            }
    
        }
    
        public OtherClass {
           public static void main(String args[]) {
              Thread t = new PeriodicChecker();
              t.start();
           }
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Im a new user in stackoverflow and this is my first question hope i
this is my first question in stackoverflow. I am trying to use PHPExcel to
Hi, I'm a Rails newbie and this is my first stackoverflow question. I'm currently
This is my first post to StackOverflow and I am also new to Xcode
This is my first question on stackoverflow, so please bear with me if I
I'm a new user to knockout.js and so far have been very impressed with
I was browsing StackOverflow when I encountered this question. Here the author mentions his/her
Another question on StackOverflow is asking how this is done, but the general question
I am new to Stack Overflow and have a question about JSF 2.0 and
It has been a long question, so here is the summary first, I have

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.