Android编程判断网络是否可用及调用系统设置项的方法
程序员文章站
2024-02-24 20:42:34
本文实例讲述了android编程判断网络是否可用及调用系统设置项的方法。分享给大家供大家参考,具体如下:
private boolean checknetwork...
本文实例讲述了android编程判断网络是否可用及调用系统设置项的方法。分享给大家供大家参考,具体如下:
private boolean checknetwork() { boolean flag = false; connectivitymanager manager = (connectivitymanager) getsystemservice(context.connectivity_service); if (manager.getactivenetworkinfo() != null) flag = manager.getactivenetworkinfo().isavailable(); if (!flag) { builder b = new alertdialog.builder(this).settitle("没有可用的网络").setmessage( "请开启gprs或wifi网络连接"); b.setpositivebutton("确定", new dialoginterface.onclicklistener() { public void onclick(dialoginterface dialog, int whichbutton) { intent mintent = new intent("/"); componentname comp = new componentname("com.android.settings", "com.android.settings.wirelesssettings"); mintent.setcomponent(comp); mintent.setaction("android.intent.action.view"); startactivity(mintent); } }).setneutralbutton("取消", new dialoginterface.onclicklistener() { public void onclick(dialoginterface dialog, int whichbutton) { dialog.cancel(); } }).create(); b.show(); } return flag; }
权限是少不了的:
<uses-permission android:name="android.permission.access_network_state" /> <uses-permission android:name="android.permission.access_wifi_state" />
更多关于android相关内容感兴趣的读者可查看本站专题:《android调试技巧与常见问题解决方法汇总》、《android开发入门与进阶教程》、《android多媒体操作技巧汇总(音频,视频,录音等)》、《android基本组件用法总结》、《android视图view技巧总结》、《android布局layout技巧总结》及《android控件用法总结》
希望本文所述对大家android程序设计有所帮助。