Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to connect to one specific network ssid from the list of configured networks. The reason is that I want to avoid connecting to the stronger network automatically by itself when there are more than one wireless network available near by.

Currently I have solved it by using following code. However it is quite ugly and seek for the proper solution.

    import java.util.List;
    import android.content.Context;
    import android.net.ConnectivityManager;
    import android.net.NetworkInfo;
    import android.net.wifi.ScanResult;
    import android.net.wifi.WifiConfiguration;
    import android.net.wifi.WifiInfo;
    import android.net.wifi.WifiManager;
    import android.os.AsyncTask;
    import android.text.TextUtils;
    import android.util.Log;

    public class EnableWiFi extends AsyncTask<Void, String, Void> {

private Context context;
private String networkSSID;

private static int MAXRETRY;
private static WifiManager wifiManager;


private OnWiFiConnectionListener wifiConnectionListener;

public EnableWiFi(Context context, String ssid) {
    this.context = context;
    networkSSID = ssid;

    Log.i("Trace.EnableWiFi.Constructor","MAXRETRY:"+MAXRETRY);

    wifiManager = (WifiManager) context.getSystemService(Context.WIFI_SERVICE);

}

@Override
protected void onPreExecute()
{
    if(!TextUtils.isEmpty(networkSSID)){
        if(!wifiManager.isWifiEnabled()){
            wifiManager.setWifiEnabled(true);
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }

        if(Connect(context, networkSSID)){        
            wifiConnectionListener.onConnecting("\nWiFi Connected!");
        }
    }
}

@Override
protected Void doInBackground(Void... params) {

    int i = 0;

    if(!TextUtils.isEmpty(networkSSID)){
        publishProgress("isConnected:"+isConnected(context));

        while (!isConnected(context)&& i<30) {

            //Wait to connect
            try {
                Thread.sleep(1000);
            } catch (InterruptedException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }    

            Log.i("EnableWiFi.Thread","Enabling WiFi..."+i+"sec");

            boolean networkFound = InScanResult(context, networkSSID.substring(1, networkSSID.length()-1));
            String scan_result = networkFound?"Network Found!":"Scanning...";

            String connection_status = isConnected(context)?"Connected!":"Connecting...";
            publishProgress("Connecting WiFi..."+i+"sec."+scan_result+" "+connection_status);

            i++;
        }
    }

    return null;
}

@Override
protected void onProgressUpdate(String... msg) {
    wifiConnectionListener.onConnecting(msg[0]);
}

@Override
protected void onPostExecute(Void result) {

    if(TextUtils.isEmpty(networkSSID)){
        wifiConnectionListener.onWiFiConnected(false, "Empty SSID! Please set correct SSID in WiFi setting!");
    }else{
        if(isConnectedSSID(context, networkSSID)){
            if(MAXRETRY==3){
                //If network in already connected, Wait to connect
                try {
                    Thread.sleep(1000);
                } catch (InterruptedException e) {
                    e.printStackTrace();
                }
            }

            wifiConnectionListener.onWiFiConnected(true, networkSSID+" is connected!");
        }else if(MAXRETRY>0){

            MAXRETRY--;
            wifiConnectionListener.onConnecting("Retry Left:"+MAXRETRY);
            EnableWiFi wifiEnabler = new EnableWiFi(context,networkSSID);   
            wifiEnabler.setWifiConnectionListener(wifiConnectionListener);
            wifiEnabler.execute();

        }else{
            wifiConnectionListener.onWiFiConnected(false, networkSSID+" not found! or signal is very weak!");
        }   
    }
}

 /**
  * 
  * @param context
  * @param networkSSID
  * @return true 
  */
 public boolean Connect(Context context, String networkSSID){

     WifiInfo wifiInfo = wifiManager.getConnectionInfo();

     boolean connection_success = false;

     if(!wifiManager.isWifiEnabled()){
         wifiManager.setWifiEnabled(true);

         try {
             Thread.sleep(1000);
         } catch (InterruptedException e) {
             // TODO Auto-generated catch block
             e.printStackTrace();
         }
     }

     if(wifiInfo.getSSID()==null || 
             !wifiInfo.getSSID().equals(networkSSID.substring(1, networkSSID.length()-1))){

         List<WifiConfiguration> list = wifiManager.getConfiguredNetworks();

         for( WifiConfiguration i : list ) {
             if(i.SSID != null && i.SSID.equals("\""+networkSSID+"\"")) {
                 wifiManager.disconnect();
                 wifiManager.enableNetwork(i.networkId, true);
                 wifiManager.reconnect();  
             }           
         }
     }else{
         connection_success = true;
     }

     return connection_success;

 }

 public static boolean isConnected(Context context) {
     ConnectivityManager connectivityManager = (ConnectivityManager) 
             context.getSystemService(Context.CONNECTIVITY_SERVICE);

     NetworkInfo networkInfo = null;

     if (connectivityManager != null) {

         networkInfo = connectivityManager.getActiveNetworkInfo();

     }

     return networkInfo == null ? false : networkInfo.getState() == NetworkInfo.State.CONNECTED;
 }

 public boolean isConnectedSSID(Context context, String networkSSID){

     WifiInfo wifiInfo = wifiManager.getConnectionInfo();

     wifiConnectionListener.onConnecting("Connected SSID:"+ wifiInfo.getSSID());

     if(wifiInfo.getSSID()==null || !wifiInfo.getSSID().equals(networkSSID.substring(1, networkSSID.length()-1))){

         return false;
     }

     return true;
 }

 /**
  * Check if netssid is in the wifi scan list
  * @param context
  * @param netssid
  * @return true if the netssid is in WiFi scan list, false otherwise
  */
 static boolean InScanResult(Context context, String netssid){

     List<ScanResult> list = wifiManager.getScanResults();

     if (list != null) {
         int i = list.size()-1;
         while(i >= 0) {
             final ScanResult scanResult = list.get(i);

             if (scanResult == null) {
                 continue;
             }

             if (TextUtils.isEmpty(scanResult.SSID)) {
                 continue;
             }

             if(scanResult.SSID.equals(netssid)){
                 return true;
             }
             i--;
         }
     }

     return false;
 }


 public Context getContext() {
    return context;
}

public void setContext(Context context) {
    this.context = context;
}

public String getNetworkSSID() {
    return networkSSID;
}

public void setNetworkSSID(String networkSSID) {
    this.networkSSID = networkSSID;
}

public OnWiFiConnectionListener getWifiConnectionListener() {
    return wifiConnectionListener;
}

public void setWifiConnectionListener(
        OnWiFiConnectionListener wifiConnectionListener) {
    this.wifiConnectionListener = wifiConnectionListener;
}


public interface OnWiFiConnectionListener {
     public void onConnecting(String msg);
     public void onWiFiConnected(boolean is_connected_to_correct_ssid, String failure_reason_if_any);
 }


public static int getMAXRETRY() {
    return MAXRETRY;
}

public static void setMAXRETRY(int mAXRETRY) {
    MAXRETRY = mAXRETRY;
}

    }

To call the asynctask,

EnableWiFi wifiEnabler = new EnableWiFi(this, networkSSID);

    EnableWiFi.setMAXRETRY(3);

    final ProgressDialog progressDialog;
    progressDialog = ProgressDialog.show(this, "","Connecting...");

    wifiEnabler.setWifiConnectionListener(new OnWiFiConnectionListener(){

        public void onConnecting(String msg) {

            progressDialog.setMessage(msg);
        }

        public void onWiFiConnected(boolean is_connected_to_correct_ssid,
                String failure_reason_if_any) {

            progressDialog.dismiss();

            if(is_connected_to_correct_ssid){

                //TODO To use the WiFi to upload/download

            }else{
                //TODO To alert user
            }
        }

    });

    wifiEnabler.execute();
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.