此代码完美运行:
startActivity(new Intent(Settings.ACTION_WIFI_SETTINGS));
但 Android 3 还显示了另一种偏好。如何仅向用户显示无线设置?
UPD 此代码:
Intent intent=new Intent(Intent.ACTION_MAIN);
intent.setClassName("com.android.phone", "com.android.phone.Settings");
startActivity(intent);
启动手机设置。wi-fi 是否有类似的东西(打开\关闭、设置 IP 地址等)?