Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am developing one sample application using location listener. I have 2 java files one is broadcast receiver and one is activity. My broadcast receiver itself is a location listener. In my broadcast receiver I am starting the gps engine as well as stopping the location updates. My requirement is to stop the location updates every day 7PM. I am trying to remove the location updates using this piece of code.

locationManager.removeUpdates(this); 

But it is not working. Where i am going wrong. Below is my full code.

StopLLActivity.java

public class StopLLActivity extends Activity {
public static LocationManager lm;

@Override   
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.main);

    Intent myIntent = new Intent( this, PIBroadCast.class); 
    PendingIntent   currentTime = PendingIntent.getBroadcast(this, 0, myIntent, 0);

    AlarmManager alarmManager = (AlarmManager)getSystemService(ALARM_SERVICE); 
    Calendar calendar = Calendar.getInstance();
    calendar.setTimeInMillis(System.currentTimeMillis());

    alarmManager.set(AlarmManager.RTC_WAKEUP, calendar.getTimeInMillis(), currentTime);
    PendingIntent   sevenPMIntent = PendingIntent.getBroadcast(this, 0, myIntent, 0);

    AlarmManager alarmManager1 = (AlarmManager)getSystemService(ALARM_SERVICE); 
    Calendar calendar1 = Calendar.getInstance();
    calendar1.setTimeInMillis(System.currentTimeMillis());
    calendar1.set(Calendar.HOUR_OF_DAY, 19);
    calendar1.set(Calendar.MINUTE, 0);
    calendar1.set(Calendar.SECOND, 0); 
    alarmManager1.setRepeating(AlarmManager.RTC_WAKEUP, calendar1.getTimeInMillis(), 24*60*60*1000, sevenPMIntent);

}

PIBroadCast.java

public class PIBroadCast extends BroadcastReceiver implements LocationListener{
public static LocationManager locationManager;  
public static boolean flagForGPS = false;
@Override  
public void onReceive(Context context, Intent intent) {

    locationManager = (LocationManager)context.getSystemService(Context.LOCATION_SERVICE); 
    if(flagForGPS == false){
        locationManager.requestLocationUpdates(LocationManager.GPS_PROVIDER, 10*1000 , 0 ,this);
        flagForGPS = true;
    }    

    //Get the system current time.
    Date dt = new Date();     
    int hours = dt.getHours();     

    //Compare the current time with 7PM and 5AM
    if(hours == 19){
        try {
            //if current time is 7PM
            Toast.makeText(context, "Now the time is 7PM", Toast.LENGTH_LONG).show(); 
            locationManager.removeUpdates(this); 
        } catch (Exception e) {

            e.printStackTrace();
        }


    }
}

@Override
public void onLocationChanged(Location location) {
    System.out.println("LOCATION IS : "+location);

}

@Override
public void onProviderDisabled(String provider) {

}

@Override
public void onProviderEnabled(String provider) {

}   

@Override
public void onStatusChanged(String provider, int status, Bundle extras) {

}

}
share|improve this question

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

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.