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
There are two more settings that might work for you:
From the API documentation:
Settings.ACTION_WIRELESS_SETTINGS
startActivity(new Intent(android.provider.Settings.ACTION_WIRELESS_SETTINGS));
Settings.ACTION_WIFI_IP_SETTINGS
startActivity(new Intent(android.provider.Settings.ACTION_WIFI_IP_SETTINGS));
Try those two and see if they open what you're after.