真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

Android中怎么實現(xiàn)一個檢查網(wǎng)絡(luò)狀態(tài)工具類

這篇文章給大家介紹Android中怎么實現(xiàn)一個檢查網(wǎng)絡(luò)狀態(tài)工具類,內(nèi)容非常詳細,感興趣的小伙伴們可以參考借鑒,希望對大家能有所幫助。

創(chuàng)新互聯(lián),專注為中小企業(yè)提供官網(wǎng)建設(shè)、營銷型網(wǎng)站制作、響應(yīng)式網(wǎng)站設(shè)計、展示型網(wǎng)站制作、網(wǎng)站設(shè)計等服務(wù),幫助中小企業(yè)通過網(wǎng)站體現(xiàn)價值、有效益。幫助企業(yè)快速建站、解決網(wǎng)站建設(shè)與網(wǎng)站營銷推廣問題。

代碼:

package com.example.ldp.com.util; 

import android.content.Context; 
import android.app.Activity; 
import android.app.AlertDialog; 
import android.content.DialogInterface; 
import android.content.Intent; 
import android.net.ConnectivityManager; 
import android.net.NetworkInfo; 
import android.net.NetworkInfo.State; 
import android.provider.Settings; 
import android.util.Log; 
import android.widget.TextView; 
 
import com.example.ldp.com.forestteaching.R; 
 
/** 
 * Description :NetUtil為 網(wǎng)絡(luò)監(jiān)控類 
 * Author:ldp 
 * Data:2017/4/7 
 */ 
public class NetUtil { 
  /** 
   * 判斷網(wǎng)絡(luò)情況 
   * 
   * @param context 上下文 
   * @return false 表示沒有網(wǎng)絡(luò) true 表示有網(wǎng)絡(luò) 
   */ 
  public static boolean isNetworkAvalible(Context context) { 
    // 獲得網(wǎng)絡(luò)狀態(tài)管理器 
    ConnectivityManager connectivityManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); 
 
    if (connectivityManager == null) { 
      return false; 
    } else { 
      // 建立網(wǎng)絡(luò)數(shù)組 
      NetworkInfo[] net_info = connectivityManager.getAllNetworkInfo(); 
 
      if (net_info != null) { 
        for (int i = 0; i < net_info.length; i++) { 
          // 判斷獲得的網(wǎng)絡(luò)狀態(tài)是否是處于連接狀態(tài) 
          if (net_info[i].getState() == NetworkInfo.State.CONNECTED) { 
            return true; 
          } 
        } 
      } 
    } 
    return false; 
  } 
 
  // 如果沒有網(wǎng)絡(luò),則彈出網(wǎng)絡(luò)設(shè)置對話框 
  public static void checkNetwork(final Activity activity) { 
    if (!NetUtil.isNetworkAvalible(activity)) { 
      TextView msg = new TextView(activity); 
      msg.setText("當前沒有可以使用的網(wǎng)絡(luò),請設(shè)置網(wǎng)絡(luò)!"); 
      new AlertDialog.Builder(activity).setIcon(R.drawable.ic_launcher).setTitle("網(wǎng)絡(luò)狀態(tài)提示").setView(msg).setPositiveButton("確定", new DialogInterface.OnClickListener() { 
 
        public void onClick(DialogInterface dialog, int whichButton) { 
          // 跳轉(zhuǎn)到設(shè)置界面 
          activity.startActivityForResult(new Intent(Settings.ACTION_WIRELESS_SETTINGS), 0); 
        } 
      }).create().show(); 
    } 
    return; 
  } 
 
  /** 
   * 判斷網(wǎng)絡(luò)是否連接 
   **/ 
  public static boolean netState(Context context) { 
    ConnectivityManager connManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); 
    // 獲取代表聯(lián)網(wǎng)狀態(tài)的NetWorkInfo對象 
    NetworkInfo networkInfo = connManager.getActiveNetworkInfo(); 
    // 獲取當前的網(wǎng)絡(luò)連接是否可用 
    boolean available = false; 
    try { 
      available = networkInfo.isAvailable(); 
    } catch (Exception e) { 
      e.printStackTrace(); 
      return false; 
    } 
    if (available) { 
      Log.i("通知", "當前的網(wǎng)絡(luò)連接可用"); 
      return true; 
    } else { 
      Log.i("通知", "當前的網(wǎng)絡(luò)連接可用"); 
      return false; 
    } 
  } 
 
  /** 
   * 在連接到網(wǎng)絡(luò)基礎(chǔ)之上,判斷設(shè)備是否是SIM網(wǎng)絡(luò)連接 
   * 
   * @param context 
   * @return 
   */ 
  public static boolean IsMobileNetConnect(Context context) { 
    try { 
      ConnectivityManager connManager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE); 
      State state = connManager.getNetworkInfo(ConnectivityManager.TYPE_MOBILE).getState(); 
      if (State.CONNECTED == state) 
        return true; 
      else 
        return false; 
    } catch (Exception e) { 
      e.printStackTrace(); 
      return false; 
    } 
  } 
 
}

關(guān)于Android中怎么實現(xiàn)一個檢查網(wǎng)絡(luò)狀態(tài)工具類就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。


本文名稱:Android中怎么實現(xiàn)一個檢查網(wǎng)絡(luò)狀態(tài)工具類
地址分享:http://weahome.cn/article/gepsii.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部