Android Network Information Get getSimOperatorName(TelephonyManager tm)

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

Description

get Sim Operator Name

Declaration

public static String getSimOperatorName(TelephonyManager tm) 

Method Source Code

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

public class Main {
    public static String getSimOperatorName(TelephonyManager tm) {// String
        return tm.getSimOperatorName();
    }//  ww w  .j a v a2 s.  co m
}

Related

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