首页 > 其他 > 详细

判断网络连接并跳到设置界面

时间:2014-09-26 12:49:29      阅读:284      评论:0      收藏:0      [点我收藏+]
		if (isConnect(this)==false) {
			final AlertDialog dlg = new AlertDialog.Builder(this).create();
			dlg.show();
			Window window = dlg.getWindow();
			window.setContentView(R.layout.shrew_exit_dialog);
			TextView title = (TextView) window.findViewById(R.id.title);
			title.setText("请开启网络连接!");

			Button ok = (Button) window.findViewById(R.id.btn_ok);
			ok.setOnClickListener(new View.OnClickListener() {
				public void onClick(View v) {
					Intent intent = new Intent("android.settings.WIRELESS_SETTINGS");
					startActivityForResult(intent, 0); // 此为设置完成后返回到获取界面
					dlg.cancel();
				}
			});

			Button cancel = (Button) window.findViewById(R.id.btn_cancel);
			cancel.setOnClickListener(new View.OnClickListener() {
				public void onClick(View v) {
					finish();
				}
			});
		}
	public static boolean isConnect(Context context) { 
		// 获取手机所有连接管理对象(包括对wi-fi,net等连接的管理) 
		try { 
			ConnectivityManager connectivity = (ConnectivityManager) context 
					.getSystemService(Context.CONNECTIVITY_SERVICE); 
			if (connectivity != null) { 
				// 获取网络连接管理的对象 
				NetworkInfo info = connectivity.getActiveNetworkInfo(); 
				if (info != null&& info.isConnected()) { 
					// 判断当前网络是否已经连接 
					if (info.getState() == NetworkInfo.State.CONNECTED) { 
						return true; 
					} 
				} 
			} 
		} catch (Exception e) { 
			//TODO: handle exception 
			Log.v("error",e.toString()); 
		} 
		return false; 
	} 


判断网络连接并跳到设置界面

原文:http://blog.csdn.net/u014765620/article/details/39578519

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!