I want to open the Settings-> Wireless & networks directly from my application.
How can I do that?
You can access the WiFi settings directly using this:
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.setClassName("com.android.settings", "com.android.settings.wifi.WifiSettings");
startActivity(intent);
The above did not work on Android 3.0, so I ended up using:
Intent intent = new Intent(Settings.ACTION_WIRELESS_SETTINGS);
startActivity(intent);