• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Broadcast action for GPS state changed

duonginfo

Newbie
I create a app that i want to catch the GPS on/off event.How do i find out the GPS device enable through GPS_EVENT_STARTED and GPS_EVENT_STOPED.Is there the broadcast action for GPS state changed?
Thank for your reading!
 
I didn't see this ability, but you can make a service that contains GPS listener with overridden next method

public void onProviderEnabled(String provider)
public void onProviderDisabled(String provider)

and you can send broadcasts yourself from them
 
Back
Top Bottom