Android examples for android.net.wifi:WifiManager
remove Wifi network
import android.content.Context; import android.net.wifi.WifiManager; public class Main { public static boolean removeWifi(Context mContext, int networkId) { WifiManager wm = (WifiManager) mContext.getSystemService(Context.WIFI_SERVICE); return wm.removeNetwork(networkId); }/* ww w . java2 s. co m*/ }