wifi - How can i call Wi-Fi settings screen from my application using Android - Stack Overflow
Look at android.provider.Settings for a series of Intent actions you can use to launch various settings screens (e.g., ACTION_WIFI_SETTINGS). EDIT: Add the coding line. startActivity(new Intent(Settings.ACTION_WIFI_SETTINGS));...