码迷,mamicode.com
首页 > 其他好文 > 详细

判断网络是否可用并打开WIFI设置

时间:2015-11-19 16:14:43      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:

        ConnectivityManager manager = (ConnectivityManager) this
                .getSystemService(Context.CONNECTIVITY_SERVICE);
        NetworkInfo info = manager.getActiveNetworkInfo();
        if (info != null && info.isAvailable()) {
            Toast.makeText(this, "网络可用", Toast.LENGTH_SHORT).show();
        } else {
            Toast.makeText(this, "网络不可用", Toast.LENGTH_SHORT).show();
            Intent intent = new Intent();
            intent.setAction(Settings.ACTION_WIFI_SETTINGS);
            this.startActivity(intent);
        }
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />

 

判断网络是否可用并打开WIFI设置

标签:

原文地址:http://www.cnblogs.com/linson0116/p/4977713.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!