Android examples for Network:Network Status
is 3G Net
//package com.java2s; import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkInfo; public class Main { public static boolean is3gNet(Context context) { ConnectivityManager cm = (ConnectivityManager) context .getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo networkINfo = cm.getActiveNetworkInfo(); return networkINfo != null && networkINfo.getType() == ConnectivityManager.TYPE_MOBILE; }/*from ww w . j a v a 2 s . co m*/ }