Android Network Information Get hasIccCard(TelephonyManager tm)

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

Description

has Icc Card

Declaration

public static boolean hasIccCard(TelephonyManager tm) 

Method Source Code

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

public class Main {
    public static boolean hasIccCard(TelephonyManager tm) {// boolean
        return tm.hasIccCard();
    }//from w w w  .j  av  a  2  s.  c  o  m
}

Related

  1. getSimSerialNumber(TelephonyManager tm)
  2. getSimState(TelephonyManager tm)
  3. getSubscriberId(TelephonyManager tm)
  4. getVoiceMailAlphaTag(TelephonyManager tm)
  5. getVoiceMailNumber(TelephonyManager tm)
  6. isNetworkRoaming(TelephonyManager tm)