Android Network Information Get getSimState(TelephonyManager tm)

Here you can find the source of getSimState(TelephonyManager tm)

Description

get Sim State

Declaration

public static int getSimState(TelephonyManager tm) 

Method Source Code

//package com.java2s;
import android.telephony.TelephonyManager;

public class Main {
    public static int getSimState(TelephonyManager tm) {// int
        return tm.getSimState();
    }//from   w  w w  .j a v a 2s  . c  o  m
}

Related

  1. getPhoneType(TelephonyManager tm)
  2. getSimCountryIso(TelephonyManager tm)
  3. getSimOperator(TelephonyManager tm)
  4. getSimOperatorName(TelephonyManager tm)
  5. getSimSerialNumber(TelephonyManager tm)
  6. getSubscriberId(TelephonyManager tm)
  7. getVoiceMailAlphaTag(TelephonyManager tm)
  8. getVoiceMailNumber(TelephonyManager tm)
  9. hasIccCard(TelephonyManager tm)