/* * 唯一的設備ID: * GSM手機的 IMEI 和 CDMA手機的 MEID. * Return null if device ID is not available. */ tm.getDeviceId();//String
/* * 設備的軟件版本號: * 例如:the IMEI/SV(software version) for GSM phones. * Return null if the software version is not available. */ tm.getDeviceSoftwareVersion();//String
/* * 手機號: * GSM手機的 MSISDN. * Return null if it is unavailable. */ tm.getLine1Number();//String
/* * Returns the ISO country code equivalent for the SIM provider's country code. * 獲取ISO國家碼,相當于提供SIM卡的國家碼。 * */ tm.getSimCountryIso();//String
/* * Returns the MCC+MNC (mobile country code + mobile network code) of the provider of the SIM. 5 or 6 decimal digits. * 獲取SIM卡提供的移動國家碼和移動網(wǎng)絡碼.5或6位的十進制數(shù)字. * SIM卡的狀態(tài)必須是 SIM_STATE_READY(使用getSimState()判斷). */ tm.getSimOperator();//String