Android 獲取裝置號、IMEI、型號
阿新 • • 發佈:2019-02-14
/** * 獲取手機IMEI唯一標識 * * @return */ public static String getIMEI(Context context) { TelephonyManager TelephonyMgr = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE); String szImei = TelephonyMgr.getDeviceId(); return szImei; } /** * 獲取終端型號 */ public static String getTem_Model() { String tem_no = android.os.Build.MODEL; return tem_no; } /** * 獲取終端品牌 */ public static String getTem_Release() { String tem_title = android.os.Build.VERSION.RELEASE; return tem_title; }