I wonder what is the value of SIM state returned by TelephonyManager.getSimState()
when "airplane mode" is turned on? This seems to be not directly specified anywhere in the SDK specification.
Actually I need to get SIM operator code (i.e. MCC+MNC) using getSimOperator()
method, but JavaDoc states that to use that method:
SIM state must be SIM_STATE_READY
UPDATE
I tested it under emulator and it returns SIM_STATE_UNKNOWN
(which is described by javadoc as a "transition between states") after airplane mode is switched on. However I would like to know whether it is a common behavior on Android phones?
After searching Android 4.1 sources I found the following code in one of the private classes
com.android.internal.telephony.IccCard
:So
State.UNKNOWN
would be returned whenever radio state is one of RADIO_OFF or RADIO_UNAVAILABLE. ThenState.UNKNOWN
will be converted toSIM_STATE_UNKNOWN
constant byTelephonyManager.getSimState()
method.As the conclusion: when airplane mode is turned on
getSimState
will returnSIM_STATE_UNKNOWN
.