Reputation: 2613
i would like to have a button that on click will direct the user to the wifi settings of the device..any idea for the onclick code please?
Upvotes: 0
Views: 1411
Reputation: 33509
You can star the WIFI Settings activity with:
startActivity(new Intent(Settings.ACTION_WIFI_SETTINGS));
Upvotes: 3