Android应用打开手机的网络设置界面
App应用离不开与服务器进行网络交互,但是有时间在网络信息不好的时间,我们要给用户提示让进行网络设置,在我们应用中一般会有一个网络加载错误(失败)的页面,上面有操作控件,点击可以进入手机的网络设置界面,代码很简单:
/**intent对象*/
Intent intent = null;
/**判断手机系统的版本 即API大于10 就是3.0或以上版本及魅族手机*/
if (android.os.Build.VERSION.SDK_INT > 10 && !android.os.Build.MANUFACTURER.equals("Meizu")) {
intent = new Intent(android.provider.Settings.ACTION_WIRELESS_SETTINGS);
}
else {
intent = new Intent();
ComponentName component = new ComponentName("com.android.settings","com.android.settings.WirelessSettings");
intent.setComponent(component);
intent.setAction("android.intent.action.VIEW");
}
context.startActivity(intent);
上面用到了判断是否是魅族手机,因为我们在项目中发现,使用魅族手机也要调用else中的代码才行。
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。