TelephonyManager mTelephonyMgr = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);String imsi = mTelephonyMgr.getSubscriberId();String i...
分类:
移动开发 时间:
2015-06-16 20:59:18
阅读次数:
253
在Android的主Activity的初始化函数中添加:TelephonyManager tm = (TelephonyManager) this .getSystemService(TELEPHONY_SERVICE); SubscriberId = tm.getSubscriberId(...
分类:
移动开发 时间:
2015-03-06 10:00:11
阅读次数:
170
直接上代码:
/**
* 获取SIM卡运营商
*
* @param context
* @return
*/
public static String getOperators(Context context) {
TelephonyManager tm = (TelephonyManager) context
.getSystemService(Conte...
分类:
移动开发 时间:
2014-08-27 23:31:18
阅读次数:
355