Android Network Information Get getSimOperator(TelephonyManager tm)

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

Description

get Sim Operator

Declaration

public static String getSimOperator(TelephonyManager tm) 

Method Source Code

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

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

Related

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