android 获取手机的网络状态

android 获取手机的网络状态


package com.example.wifi;



import android.net.ConnectivityManager;
import android.net.NetworkInfo.State;
import android.os.Bundle;
import android.app.Activity;
import android.app.AlertDialog;
import android.content.ComponentName;
import android.content.Context;
import android.content.DialogInterface;
import android.content.DialogInterface.OnClickListener;
import android.content.Intent;
import android.util.Log;
import android.view.Menu;
import android.widget.LinearLayout;
import android.widget.Toast;

public class MainActivity extends Activity {

	//检测网络连接状态
	private ConnectivityManager manager;
	
	private LinearLayout ll;
	private AdView adsView;
	
	@Override
	protected void onCreate(Bundle savedInstanceState) {
		super.onCreate(savedInstanceState);
		setContentView(R.layout.activity_main);
		
		
	}

	/**
	 * 检测网络是否连接
	 * @return
	 */
	private boolean checkNetworkState() {
		boolean flag = false;
		//得到网络连接信息
		manager = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
		//去进行判断网络是否连接
		if (manager.getActiveNetworkInfo() != null) {
			flag = manager.getActiveNetworkInfo().isAvailable();
		}
		if (!flag) {
			setNetwork();
		} else {
			isNetworkAvailable();
		}

		return flag;
	}
	

	/**
	 * 网络未连接时,调用设置方法
	 */
	private void setNetwork(){
		Toast.makeText(this, "wifi is closed!", Toast.LENGTH_SHORT).show();
		
		AlertDialog.Builder builder = new AlertDialog.Builder(this);
		builder.setIcon(R.drawable.ic_launcher);
		builder.setTitle("网络提示信息");
		builder.setMessage("网络不可用,如果继续,请先设置网络!");
		builder.setPositiveButton("设置", new OnClickListener() {
			@Override
			public void onClick(DialogInterface dialog, int which) {
				Intent intent = null;
				/**
				 * 判断手机系统的版本!如果API大于10 就是3.0+
				 * 因为3.0以上的版本的设置和3.0以下的设置不一样,调用的方法不同
				 */
				if (android.os.Build.VERSION.SDK_INT > 10) {
					intent = new Intent(android.provider.Settings.ACTION_WIFI_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");
				}
				startActivity(intent);
			}
		});

		builder.setNegativeButton("取消", new OnClickListener() {
			@Override
			public void onClick(DialogInterface dialog, int which) {

			}
		});
		builder.create();
		builder.show();
	}
	
	/**
	 * 网络已经连接,然后去判断是wifi连接还是GPRS连接
	 * 设置一些自己的逻辑调用
	 */
	private void isNetworkAvailable(){
		
		State gprs = manager.getNetworkInfo(ConnectivityManager.TYPE_MOBILE).getState();
	    State wifi = manager.getNetworkInfo(ConnectivityManager.TYPE_WIFI).getState();
	    if(gprs == State.CONNECTED || gprs == State.CONNECTING){
	    	Toast.makeText(this, "wifi is open! gprs", Toast.LENGTH_SHORT).show();
	    }
	    //判断为wifi状态下才加载广告,如果是GPRS手机网络则不加载!
	    if(wifi == State.CONNECTED || wifi == State.CONNECTING){
	    	Toast.makeText(this, "wifi is open! wifi", Toast.LENGTH_SHORT).show();
	    	
	    }
		
	}
	
	

	@Override
	public boolean onCreateOptionsMenu(Menu menu) {
		// Inflate the menu; this adds items to the action bar if it is present.
		getMenuInflater().inflate(R.menu.activity_main, menu);
		return true;
	}
	
	@Override
	protected void onResume() {
		Log.i("lzan13", "onResume");
		checkNetworkState();
		super.onResume();
	}
	
	@Override
	protected void onDestroy() {
		Log.i("lzan13", "onDestroy");
		super.onDestroy();
	}

	

}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值