Android examples for Wifi:Wifi Connection
is Wifi Net
//package com.java2s; import android.content.Context; import android.net.ConnectivityManager; import android.net.NetworkInfo; public class Main { public static boolean isWifiNet(Context context) { ConnectivityManager cm = (ConnectivityManager) context .getSystemService(Context.CONNECTIVITY_SERVICE); NetworkInfo networkINfo = cm.getActiveNetworkInfo(); return networkINfo != null && networkINfo.getType() == ConnectivityManager.TYPE_WIFI; }/*w w w. jav a 2 s. c o m*/ }