I want to open the Settings-> Wireless & networks directly from my application.
How can I do that?
Use Following Function For Open WI_FI Settings
private void openWifi() { Intent intent = new Intent(Settings.ACTION_WIRELESS_SETTINGS); startActivity(intent); }