web-dev-qa-db-ja.com

SimカードがAndroidデバイスで利用可能かどうかを確認するにはどうすればよいですか?

デバイスにSIMカードがあるかどうかをプログラムで確認するのに助けが必要です。サンプルコードを提供してください。

48
Senthil Mg

TelephonyManagerを使用します。

http://developer.Android.com/reference/Android/telephony/TelephonyManager.html

Falmarriが指摘しているように、あなたはまずgetPhoneTypeを使用して、GSM電話を扱っているかどうかを確認します。もしそうなら、SIM状態を取得することもできます。

_TelephonyManager telMgr = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
    int simState = telMgr.getSimState();
            switch (simState) {
                case TelephonyManager.SIM_STATE_ABSENT:
                    // do something
                    break;
                case TelephonyManager.SIM_STATE_NETWORK_LOCKED:
                    // do something
                    break;
                case TelephonyManager.SIM_STATE_PIN_REQUIRED:
                    // do something
                    break;
                case TelephonyManager.SIM_STATE_PUK_REQUIRED:
                    // do something
                    break;
                case TelephonyManager.SIM_STATE_READY:
                    // do something
                    break;
                case TelephonyManager.SIM_STATE_UNKNOWN:
                    // do something
                    break;
            }
_

編集:

API 26(Android O Preview)から、getSimState(int slotIndex)を使用して、個々のsimスロットのSimStateをクエリできます。つまり:

_int simStateMain = telMgr.getSimState(0);
int simStateSecond = telMgr.getSimState(1);
_

公式ドキュメント

以前のAPIで開発している場合は、_TelephonyManager's_を使用できます

_String getDeviceId (int slotIndex)
//returns null if device ID is not available. ie. query slotIndex 1 in a single sim device

int devIdSecond = telMgr.getDeviceId(1);

//if(devIdSecond == null)
// no second sim slot available
_

aPI 23で追加されました-ドキュメント こちら

111
Charlie Collins

以下のコードで確認できます:

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);

    }
8
Arun kumar

これを行う別の方法を見つけました。

public static boolean isSimStateReadyorNotReady() {
        int simSlotCount = sSlotCount;
        String simStates = SystemProperties.get("gsm.sim.state", "");
        if (simStates != null) {
            String[] slotState = simStates.split(",");
            int simSlot = 0;
            while (simSlot < simSlotCount && slotState.length > simSlot) {
                String simSlotState = slotState[simSlot];
                Log.d("MultiSimUtils", "isSimStateReadyorNotReady() : simSlot = " + simSlot + ", simState = " + simSlotState);
                if (simSlotState.equalsIgnoreCase("READY") || simSlotState.equalsIgnoreCase("NOT_READY")) {
                    return true;
                }
                simSlot++;
            }
        }
        return false;
    }
2
kakopappa