Android Network Information Get getSimCountryIso(TelephonyManager tm)

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

Description

get Sim Country Iso

Declaration

public static String getSimCountryIso(TelephonyManager tm) 

Method Source Code

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

public class Main {
    public static String getSimCountryIso(TelephonyManager tm) {// String
        return tm.getSimCountryIso();
    }/*from www.  j  a v a 2 s  . co  m*/
}

Related

  1. getNetworkCountryIso(TelephonyManager tm)
  2. getNetworkOperator(TelephonyManager tm)
  3. getNetworkOperatorName(TelephonyManager tm)
  4. getNetworkType(TelephonyManager tm)
  5. getPhoneType(TelephonyManager tm)
  6. getSimOperator(TelephonyManager tm)
  7. getSimOperatorName(TelephonyManager tm)
  8. getSimSerialNumber(TelephonyManager tm)
  9. getSimState(TelephonyManager tm)