Most visited

Recently visited

Added in API level 23

CarrierService

public abstract class CarrierService
extends Service

java.lang.Object
   ↳ android.content.Context
     ↳ android.content.ContextWrapper
       ↳ android.app.Service
         ↳ android.service.carrier.CarrierService


A service that exposes carrier-specific functionality to the system.

To extend this class, you must declare the service in your manifest file to require the BIND_CARRIER_SERVICES permission and include an intent filter with the CARRIER_SERVICE_INTERFACE. If the service should have a long-lived binding, set android.service.carrier.LONG_LIVED_BINDING to true in the service's metadata. For example:

<service android:name=".MyCarrierService"
       android:label="@string/service_name"
       android:permission="android.permission.BIND_CARRIER_SERVICES">
  <intent-filter>
      <action android:name="android.service.carrier.CarrierService" />
  </intent-filter>
  <meta-data android:name="android.service.carrier.LONG_LIVED_BINDING"
             android:value="true" />
 </service>
 

Summary

Constants

String CARRIER_SERVICE_INTERFACE

Inherited constants

From class android.app.Service
From class android.content.Context
From interface android.content.ComponentCallbacks2

Public constructors

CarrierService()

Public methods

final void notifyCarrierNetworkChange(boolean active)

Informs the system of an intentional upcoming carrier network change by a carrier app.

IBinder onBind(Intent intent)

If overriding this method, call through to the super method for any unknown actions.

abstract PersistableBundle onLoadConfig(CarrierIdentifier id)

Override this method to set carrier configuration.

Inherited methods

From class android.app.Service
From class android.content.ContextWrapper
From class android.content.Context
From class java.lang.Object
From interface android.content.ComponentCallbacks2
From interface android.content.ComponentCallbacks

Constants

CARRIER_SERVICE_INTERFACE

Added in API level 23
String CARRIER_SERVICE_INTERFACE

Constant Value: "android.service.carrier.CarrierService"

Public constructors

CarrierService

Added in API level 23
CarrierService ()

Public methods

notifyCarrierNetworkChange

Added in API level 23
void notifyCarrierNetworkChange (boolean active)

Informs the system of an intentional upcoming carrier network change by a carrier app. This call is optional and is only used to allow the system to provide alternative UI while telephony is performing an action that may result in intentional, temporary network lack of connectivity.

Based on the active parameter passed in, this method will either show or hide the alternative UI. There is no timeout associated with showing this UX, so a carrier app must be sure to call with active set to false sometime after calling with it set to true.

Requires Permission: MODIFY_PHONE_STATE Or the calling app has carrier privileges.

Parameters
active boolean: Whether the carrier network change is or shortly will be active. Set this value to true to begin showing alternative UI and false to stop.

See also:

onBind

Added in API level 23
IBinder onBind (Intent intent)

If overriding this method, call through to the super method for any unknown actions. Return the communication channel to the service. May return null if clients can not bind to the service. The returned IBinder is usually for a complex interface that has been described using aidl.

Note that unlike other application components, calls on to the IBinder interface returned here may not happen on the main thread of the process. More information about the main thread can be found in Processes and Threads.

Parameters
intent Intent: The Intent that was used to bind to this service, as given to Context.bindService. Note that any extras that were included with the Intent at that point will not be seen here.
Returns
IBinder Return an IBinder through which clients can call on to the service.

onLoadConfig

Added in API level 23
PersistableBundle onLoadConfig (CarrierIdentifier id)

Override this method to set carrier configuration.

This method will be called by telephony services to get carrier-specific configuration values. The returned config will be saved by the system until,

  1. The carrier app package is updated, or
  2. The carrier app requests a reload with notifyConfigChangedForSubId.
This method can be called after a SIM card loads, which may be before or after boot.

This method should not block for a long time. If expensive operations (e.g. network access) are required, this method can schedule the work and return null. Then, use notifyConfigChangedForSubId to trigger a reload when the config is ready.

Implementations should use the keys defined in CarrierConfigManager. Any configuration values not set in the returned PersistableBundle may be overridden by the system's default configuration service.

Parameters
id CarrierIdentifier: contains details about the current carrier that can be used do decide what configuration values to return.
Returns
PersistableBundle a PersistableBundle object containing the configuration or null if default values should be used.

Hooray!