Hello Friends i开发一个SIM卡信息应用程序非常好用。但我立即在平板电脑p650中发现它没有显示simcard号码,我在手机和模拟器中检查它运行良好但是检查平板电脑它不给simcard号码。所以对于平板电脑来找到任何其他代码的simcard号码???请朋友们快速提前感谢
答案 0 :(得分:0)
您可能需要先检查一下:
final TelephonyManager telephonyManager = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
if (telephonyManager.getSimState() == TelephonyManager.SIM_STATE_ABSENT) {
// Oh, darn! No SIMCARD in device.
} else {
// Hooray, found a SIMCARD! Then, do something.
String simSerial = telephonyManager.getSimSerialNumber();
}