如何使用Android应用程序检查Android平板电脑,如果它有SIM卡(4g)功能或没有。因为我已经创建了一个应用程序,必须执行不同的任务,取决于它是否有SIM卡(4g)手机功能或没有。
你必须发挥周围的TelephoneyManager测试,如果它有simcard插槽或没有。此处
public static boolean isSimSupport(Context context)
{
TelephonyManager tm = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE); //gets the current TelephonyManager
return !(tm.getSimState() == TelephonyManager.SIM_STATE_ABSENT);
}