Java tutorial
//package com.java2s; import android.content.Context; import android.net.wifi.WifiManager; public class Main { public static Boolean isWiFiEnabled(Context context) { WifiManager wifi = (WifiManager) context.getSystemService(Context.WIFI_SERVICE); if (wifi.isWifiEnabled()) { return true; } return false; } }