Android Network Information Get getSubscriberId(TelephonyManager tm)

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

Description

get Subscriber Id

Declaration

public static String getSubscriberId(TelephonyManager tm) 

Method Source Code

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

public class Main {
    public static String getSubscriberId(TelephonyManager tm) {// String
        return tm.getSubscriberId();
    }/*from w w  w  .  j  a  v a2 s.c om*/
}

Related

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