Android获取IMEI号

Android Phone:

 ((TelephonyManager) getSystemService(TELEPHONY_SERVICE)).getDeviceId()

在AndroidManifest.xml文件中要添加

<uses-permission android:name="android.permission.READ_PHONE_STATE" />

Android Pad:

Settings.Secure.getString(context.getContentResolver(), Settings.Secure.ANDROID_ID)


你可能感兴趣的:(android,IMEI)