标签:contex man ext str 获取 ice iphone splay val
String NUMERIC = getSIMInfo();
protected String getSIMInfo() {
TelephonyManager iPhoneManager = (TelephonyManager) this
.getSystemService(Context.TELEPHONY_SERVICE);
return iPhoneManager.getSimOperator();
}
values.put("numeric", NUMERIC);
values.put("mcc", NUMERIC.substring(0, 3));
values.put("mnc", NUMERIC.substring(3, NUMERIC.length()));
标签:contex man ext str 获取 ice iphone splay val
原文地址:https://www.cnblogs.com/bluestorm/p/9413186.html