Reputation: 18501
The way to open the Wi-Fi settings is the following:
startActivity(new Intent(android.provider.Settings.ACTION_WIFI_IP_SETTINGS));
Is there an equivalent way for the Ethernet settings?
Upvotes: 1
Views: 1606
Reputation: 673
Normally in all android device (not custom android) Settings.ACTION_ETHERNET_IP_SETTINGS kind of Intent not available for ETHERNET.
It is depending on custom android OS. If it provide that kind of Intent in there android OS.than you can use it.
Upvotes: 1