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);
That code works for me.
startActivity(new Intent(android.provider.Settings.ACTION_WIFI_SETTINGS));
use the below code to call wireless and networks directly from your application.
Intent intent=new Intent();
intent.setComponent(new ComponentName("com.android.settings", "com.android.settings.WirelessSettings"));
startActivity(intent);
i tried solutions above and it give me error that if you want to open external open you should flag that intent with FLAG_ACTIVITY_NEW_TASK
here is my solution in kotlin
val intent = Intent(Settings.ACTION_WIFI_SETTINGS)
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK)
startActivity(getApplication(), intent, null)
Try this:
startActivity(new Intent(android.provider.Settings.ACTION_WIRELESS_SETTINGS));
Or perhaps startActivityForResult. Your call. You can open different settings by checking the constants in Settings
Use Following Function For Open WI_FI Settings
private void openWifi() {
Intent intent = new Intent(Settings.ACTION_WIRELESS_SETTINGS);
startActivity(intent);
}