public class LocationControllerImpl extends BroadcastReceiver implements LocationController
BroadcastReceiver.PendingResult
LocationController.LocationSettingsChangeCallback
Modifier and Type | Field and Description |
---|---|
static int |
LOCATION_STATUS_ICON_ID |
String |
mSlotLocation |
Constructor and Description |
---|
LocationControllerImpl(Context context,
Looper bgLooper) |
Modifier and Type | Method and Description |
---|---|
void |
addSettingsChangedCallback(LocationController.LocationSettingsChangeCallback cb)
Add a callback to listen for changes in location settings.
|
boolean |
isLocationEnabled()
Returns true if location isn't disabled in settings.
|
void |
onReceive(Context context,
Intent intent)
This method is called when the BroadcastReceiver is receiving an Intent
broadcast.
|
void |
removeSettingsChangedCallback(LocationController.LocationSettingsChangeCallback cb) |
boolean |
setLocationEnabled(boolean enabled)
Enable or disable location in settings.
|
abortBroadcast, clearAbortBroadcast, getAbortBroadcast, getDebugUnregister, getPendingResult, getResultCode, getResultData, getResultExtras, getSendingUserId, goAsync, isInitialStickyBroadcast, isOrderedBroadcast, peekService, setDebugUnregister, setOrderedHint, setPendingResult, setResult, setResultCode, setResultData, setResultExtras
public static final int LOCATION_STATUS_ICON_ID
public final String mSlotLocation
public void addSettingsChangedCallback(LocationController.LocationSettingsChangeCallback cb)
addSettingsChangedCallback
in interface LocationController
public void removeSettingsChangedCallback(LocationController.LocationSettingsChangeCallback cb)
removeSettingsChangedCallback
in interface LocationController
public boolean setLocationEnabled(boolean enabled)
This will attempt to enable/disable every type of location setting (e.g. high and balanced power).
If enabling, a user consent dialog will pop up prompting the user to accept. If the user doesn't accept, network location won't be enabled.
setLocationEnabled
in interface LocationController
public boolean isLocationEnabled()
isLocationEnabled
in interface LocationController
public void onReceive(Context context, Intent intent)
BroadcastReceiver
Context.registerReceiver(BroadcastReceiver,
IntentFilter, String, android.os.Handler)
. When it runs on the main
thread you should
never perform long-running operations in it (there is a timeout of
10 seconds that the system allows before considering the receiver to
be blocked and a candidate to be killed). You cannot launch a popup dialog
in your implementation of onReceive().
If this BroadcastReceiver was launched through a <receiver> tag,
then the object is no longer alive after returning from this
function. This means you should not perform any operations that
return a result to you asynchronously -- in particular, for interacting
with services, you should use
Context.startService(Intent)
instead of
Context.bindService(Intent, ServiceConnection, int)
. If you wish
to interact with a service that is already running, you can use
BroadcastReceiver.peekService(android.content.Context, android.content.Intent)
.
The Intent filters used in Context.registerReceiver(android.content.BroadcastReceiver, android.content.IntentFilter)
and in application manifests are not guaranteed to be exclusive. They
are hints to the operating system about how to find suitable recipients. It is
possible for senders to force delivery to specific recipients, bypassing filter
resolution. For this reason, onReceive()
implementations should respond only to known actions, ignoring any unexpected
Intents that they may receive.
onReceive
in class BroadcastReceiver
context
- The Context in which the receiver is running.intent
- The Intent being received.