SystemUI獲得SIM卡相關(guān)的mcc/mnc值技健,分兩種情況討論
1. 存儲(chǔ)在SIM卡中的mcc/mnc
這個(gè)值是存儲(chǔ)在SIM卡IMSI(國(guó)際移動(dòng)用戶(hù)識(shí)別碼 International Mobile Subscriber Identification Number)中的固定值匈挖,不會(huì)被更改胸囱。有以下兩種途徑可以取得洽瞬。
1.1 通過(guò)TelephonyManager獲得
在TelephonyManager中有如下方法:
//TelephonyManager.java
/**
* Returns the MCC+MNC (mobile country code + mobile network code) of the
* provider of the SIM for a particular subscription. 5 or 6 decimal digits.
* <p>
* Availability: SIM state must be {@link #SIM_STATE_READY}
*
* @see #getSimState
*
* @param subId for which SimOperator is returned
* @hide
*/
public String getSimOperatorNumeric(int subId) {
int phoneId = SubscriptionManager.getPhoneId(subId);
return getSimOperatorNumericForPhone(phoneId);
}
/**
* Returns the MCC+MNC (mobile country code + mobile network code) of the
* provider of the SIM for a particular subscription. 5 or 6 decimal digits.
* <p>
*
* @param phoneId for which SimOperator is returned
* @hide
*/
public String getSimOperatorNumericForPhone(int phoneId) {
return getTelephonyProperty(phoneId,
TelephonyProperties.PROPERTY_ICC_OPERATOR_NUMERIC, "");
}
↓↓↓
- 由于subId并不固定,是根據(jù)放進(jìn)sim卡槽時(shí)候的計(jì)數(shù)來(lái)統(tǒng)計(jì)的操漠,但是如果相關(guān)類(lèi)中有SubscriptionInfo對(duì)象的話收津,是可以直接取到的:
int subId = mSubscriptionInfo.getSubscriptionId();
- 另一種phoneId則比較簡(jiǎn)單了,它與sim卡數(shù)量有關(guān)浊伙,單卡時(shí)為0撞秋,雙卡時(shí)根據(jù)sim slot位置分別取0和1。
1.2 通過(guò)SubscriptionInfo獲得
在有些特殊情況下嚣鄙,比如SIM卡處于PIN碼LOCK狀態(tài)時(shí)吻贿,1.1所提到的方法是取不到的,這個(gè)時(shí)候只能通過(guò)SubscriptionInfo來(lái)取哑子。
// SubscriptionInfo.java
/**
* @return the MCC.
*/
public int getMcc() {
return this.mMcc;
}
/**
* @return the MNC.
*/
public int getMnc() {
return this.mMnc;
}
注意廓八,由于這個(gè)方法取到的mcc/mnc均為int值,比如中國(guó)聯(lián)通的“46001”赵抢,則有mcc為“460”剧蹂,mnc為“1”,與固定String字符串進(jìn)行匹配比對(duì)的話烦却,需要先將String拆分為兩部分后分別強(qiáng)轉(zhuǎn)成int型后才可進(jìn)行比對(duì)宠叼。
2. SIM卡注冊(cè)網(wǎng)絡(luò)的mcc/mnc
非漫游情況下,注冊(cè)網(wǎng)絡(luò)的mcc/mnc就是SIM卡中存儲(chǔ)的。但是如果你的SIM卡在其他國(guó)家并沒(méi)有該運(yùn)營(yíng)商的基站冒冬,只能通過(guò)漫游到其他運(yùn)營(yíng)商的網(wǎng)絡(luò)上維持服務(wù)時(shí)伸蚯,注冊(cè)網(wǎng)絡(luò)的mcc/mnc對(duì)應(yīng)的就是該運(yùn)營(yíng)商的值,與SIM卡無(wú)關(guān)了简烤。
2.1 通過(guò)ServiceState獲得
熟悉Android Telephony流程的朋友應(yīng)該都知道剂邮,CS、PS域的注冊(cè)狀態(tài)横侦,漫游狀態(tài)挥萌,運(yùn)營(yíng)商名字的顯示,網(wǎng)絡(luò)模式等都是用模板類(lèi)ServiceState.java來(lái)保存的枉侧。
SystemUI中有不少類(lèi)都注冊(cè)了PhoneStateListener這個(gè)callback引瀑,用來(lái)時(shí)刻關(guān)注設(shè)備的一些telephony相關(guān)狀態(tài),當(dāng)網(wǎng)絡(luò)服務(wù)狀態(tài)有變化時(shí)榨馁,會(huì)回調(diào)其onServiceStateChanged(ServiceState serviceState)方法憨栽,這樣我們就可以直接從ServiceState里面取了。
// ServiceState.java
/**
* Get current registered operator numeric id.
*
* In GSM/UMTS, numeric format is 3 digit country code plus 2 or 3 digit
* network code.
*
* @return numeric format of operator, null if unregistered or unknown
*/
/*
* The country code can be decoded using
* {@link com.android.internal.telephony.MccTable#countryCodeForMcc(int)}.
*/
public String getOperatorNumeric() {
return mVoiceOperatorNumeric;
}
/**
* Get current registered voice network operator numeric id.
* @return numeric format of operator, null if unregistered or unknown
* @hide
*/
public String getVoiceOperatorNumeric() {
return mVoiceOperatorNumeric;
}
/**
* Get current registered data network operator numeric id.
* @return numeric format of operator, null if unregistered or unknown
* @hide
*/
public String getDataOperatorNumeric() {
return mDataOperatorNumeric;
}
一般來(lái)說(shuō)翼虫,voice語(yǔ)音業(yè)務(wù)和data數(shù)據(jù)業(yè)務(wù)對(duì)應(yīng)的OperatorNumeric是一樣的屑柔,所以getOperatorNumeric()默認(rèn)取了voice的。
2.2 通過(guò)監(jiān)聽(tīng)Telephony廣播獲得
由于該Intent action為MTK新增的珍剑,故以下方法介紹均以MTK源碼為基礎(chǔ)掸宛。
上面的方法必須在voice與data均注冊(cè)成功的前提下才能獲得,但是在一些很特殊的環(huán)境下次慢,比如SIM卡雖然漫游上了某個(gè)其他運(yùn)營(yíng)商的網(wǎng)絡(luò)旁涤,但由于兩家運(yùn)營(yíng)商之間并沒(méi)有協(xié)議,導(dǎo)致無(wú)法注冊(cè)上服務(wù)迫像,此時(shí)voice和data取得的OperatorNumeric均為空的劈愚。
在MTK源碼中,MtkServiceStateTracker在處理PLMN String即mcc/mnc時(shí)闻妓,會(huì)通過(guò)action為“TelephonyIntents.ACTION_LOCATED_PLMN_CHANGED”的廣播菌羽,把它作為extra參數(shù)傳遞出去。
// MtkServiceStateTracker.java
private void updateLocatedPlmn(String plmn) {
if (((mLocatedPlmn == null) && (plmn != null)) ||
((mLocatedPlmn != null) && (plmn == null)) ||
((mLocatedPlmn != null) && (plmn != null) && !(mLocatedPlmn.equals(plmn)))) {
log("updateLocatedPlmn(),previous plmn= " + mLocatedPlmn + " ,update to: " + plmn);
Intent intent = new Intent(TelephonyIntents.ACTION_LOCATED_PLMN_CHANGED);
if (TelephonyManager.getDefault().getPhoneCount() == 1) {
intent.addFlags(Intent.FLAG_RECEIVER_REPLACE_PENDING);
}
intent.putExtra(TelephonyIntents.EXTRA_PLMN, plmn);
...
mPhone.getContext().sendStickyBroadcastAsUser(intent, UserHandle.ALL);
}
mLocatedPlmn = plmn;
}
由此可知由缆,只要在需要取的類(lèi)中注祖,注冊(cè)一個(gè)監(jiān)聽(tīng)“ACTION_LOCATED_PLMN_CHANGED”的BroadcastReceiver就行了,在設(shè)備開(kāi)機(jī)之后便可以第一時(shí)間拿到漫游網(wǎng)絡(luò)的mcc/mnc值均唉,具體如下:
private BroadcastReceiver mReceiver = new BroadcastReceiver() {
@Override
public void onReceive(Context context, Intent intent) {
final String action = intent.getAction();
if (action.equals(TelephonyIntents.ACTION_LOCATED_PLMN_CHANGED)) {
mLocatedPlmn = intent.getStringExtra(TelephonyIntents.EXTRA_PLMN);
// mLocatedPlmn即為漫游網(wǎng)絡(luò)的mcc/mnc值是晨,接下來(lái)用它操作即可
...
}
}
};