Android Network Information Get isNetworkRoaming(TelephonyManager tm)

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

Description

is Network Roaming

Declaration

public static boolean isNetworkRoaming(TelephonyManager tm) 

Method Source Code

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

public class Main {
    public static boolean isNetworkRoaming(TelephonyManager tm) {// boolean
        return tm.isNetworkRoaming();
    }//from ww  w .  j a  v  a 2  s .  c om
}

Related

  1. getSimState(TelephonyManager tm)
  2. getSubscriberId(TelephonyManager tm)
  3. getVoiceMailAlphaTag(TelephonyManager tm)
  4. getVoiceMailNumber(TelephonyManager tm)
  5. hasIccCard(TelephonyManager tm)