如何以编程方式检查 Android 平板电脑是否具有 SIM 卡功能?

How to check if the Android Tablet has simcard feature programatically?

如何使用 Android 应用检查 Android 平板电脑是否具有 SIM 卡 (4g) 功能。因为我创建了一个应用程序,它必须执行不同的任务,具体取决于它是否具有 simcard (4g) phone 功能。

您必须尝试使用​​ TelephonyManager 来测试它是否有 simcard 插槽。 确切地说,请尝试下面的代码。来自 here

的更多详细信息
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);

    }