I need a way to open the \"Advanced wifi\" settings programatically to let the user change some of the settings, or, preferably, to change these advanced wireless settings p
Here is the code snippet to open WIFI settings page
Intent intent = new Intent(Intent.ACTION_MAIN, null);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
ComponentName cn = new ComponentName("com.android.settings", "com.android.settings.wifi.WifiSettings");
intent.setComponent(cn);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity( intent);