Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to detect when user turn on/off GPS state?

Tags:

I want to block the user from changing WiFi, GPS and loading settings from my application. The user need not on/off WiFi and GPS while running my application.(From notification bar). Is there any BroadcastReceiver exist for listening GPS on/off?

like image 344
Devu Soman Avatar asked Apr 03 '13 04:04

Devu Soman


People also ask

How do you check if Location is turned off?

Open your phone's Settings app. Under "Personal," tap Location access. At the top of the screen, turn Access to my location on or off.


2 Answers

Well I did a lot of digging and found that addGpsStatusListener(gpsStatusListener) was deprecated in API 24. And for me, this didn't even work! So, here is another alternative solution to this.

If in your app, you want to listen to the GPS state change (I mean On/Off by user). Using a Broadcast surely is the best approach.

Implementation:

/**  * Following broadcast receiver is to listen the Location button toggle state in Android.  */ private BroadcastReceiver mGpsSwitchStateReceiver = new BroadcastReceiver() {     @Override     public void onReceive(Context context, Intent intent) {          if (intent.getAction().matches("android.location.PROVIDERS_CHANGED")) {             // Make an action or refresh an already managed state.         }     } }; 

Don't forget to register and unregister this efficiently in Fragment/Activity Lifecycle as well.

registerReceiver(mGpsSwitchStateReceiver, new IntentFilter(LocationManager.PROVIDERS_CHANGED_ACTION)); 

For example, if you are using this a Fragment, register it in the onResume and unregister in the onDestroy. Also, if you are directing user to the settings to enable the Location Switch, unregistering in the onStop will not function since, your activity goes to onPause and Fragment is stopped.

Well there may be many answers for this solution but this one is easy to manage and use. Propose your solutions if any.

like image 64
sud007 Avatar answered Oct 19 '22 01:10

sud007


You can listen the GPS status with a GpsStatus.Listener and register it with the LocationManager.

LocationManager lm = (LocationManager) getSystemService(Context.LOCATION_SERVICE); lm.addGpsStatusListener(new android.location.GpsStatus.Listener() {     public void onGpsStatusChanged(int event)     {         switch(event)         {         case GPS_EVENT_STARTED:             // do your tasks             break;         case GPS_EVENT_STOPPED:             // do your tasks             break;         }     } }); 

You need to have access to the context (for example in an "Activity" or "Application" class).

  • https://developer.android.com/reference/android/location/GpsStatus.Listener.html
  • https://developer.android.com/reference/android/location/LocationManager.html
like image 45
luxer Avatar answered Oct 19 '22 03:10

luxer