运维网's Archiver
论坛
›
无线技术运维
› android调用系统的WIFI设置界面
henda
发表于 2015-10-2 07:17:44
android调用系统的WIFI设置界面
if(android.os.Build.VERSION.SDK_INT > 10) {
startActivity(new Intent( android.provider.Settings.ACTION_SETTINGS));
} else {
startActivity(new Intent( android.provider.Settings.ACTION_WIRELESS_SETTINGS));
}
页:
[1]
查看完整版本:
android调用系统的WIFI设置界面