最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

Android WiFi熱點開發(fā)的示例代碼

 更新時間:2019年09月09日 09:17:19   作者:大頭呆  
這篇文章主要介紹了Android WiFi熱點開發(fā)的示例代碼,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友們下面隨著小編來一起學(xué)習(xí)學(xué)習(xí)吧

上次寫了Android連接匿名WiFi的內(nèi)容。WiFI開發(fā)對于應(yīng)用層開發(fā)是比較小眾的知識點,不過既然用到了就在此記錄下。

創(chuàng)建熱點

1、根據(jù)加密類型、密碼、是否隱藏等參數(shù)來創(chuàng)建熱點

 static WifiConfiguration createWifiConfig(String SSID, @WifiSecurityType int wifiCipherType, String password, boolean hiddenSSID) {

    WifiConfiguration wifiConfiguration = new WifiConfiguration();
    wifiConfiguration.SSID = convertToQuotedString(SSID);
    wifiConfiguration.hiddenSSID=hiddenSSID;//是否隱藏?zé)狳ctrue=隱藏,如果隱藏需要其他設(shè)備手動添加網(wǎng)絡(luò)
    switch (wifiCipherType) {
      case WifiSecurityType.SECURITY_NONE:
        wifiConfiguration.allowedKeyManagement.set(WifiConfiguration.KeyMgmt.NONE);
        break;
      case WifiSecurityType.SECURITY_WEP:
        wifiConfiguration.allowedKeyManagement.set(KeyMgmt.NONE);
        wifiConfiguration.allowedAuthAlgorithms.set(AuthAlgorithm.OPEN);
        wifiConfiguration.allowedAuthAlgorithms.set(AuthAlgorithm.SHARED);
        if (!TextUtils.isEmpty(password)) {
          int length = password.length();
          // WEP-40, WEP-104, and 256-bit WEP (WEP-232?)
          if ((length == 10 || length == 26 || length == 58)
              && password.matches("[0-9A-Fa-f]*")) {
            wifiConfiguration.wepKeys[0] = password;
          } else {
            wifiConfiguration.wepKeys[0] = '"' + password + '"';
          }
        }
        break;

      case WifiSecurityType.SECURITY_WPA_PSK:
        wifiConfiguration.allowedKeyManagement.set(KeyMgmt.WPA_PSK);
        if (!TextUtils.isEmpty(password)) {
          if (password.matches("[0-9A-Fa-f]{64}")) {
            wifiConfiguration.preSharedKey = password;
          } else {
            wifiConfiguration.preSharedKey = '"' + password + '"';
          }
        }
        break;

      case WifiSecurityType.SECURITY_WPA_EAP:
        wifiConfiguration.allowedKeyManagement.set(KeyMgmt.WPA_EAP);
        wifiConfiguration.allowedKeyManagement.set(KeyMgmt.IEEE8021X);
        wifiConfiguration.enterpriseConfig = new WifiEnterpriseConfig();
        int eapMethod = 0;
        int phase2Method = 0;
        wifiConfiguration.enterpriseConfig.setEapMethod(eapMethod);
        wifiConfiguration.enterpriseConfig.setPhase2Method(phase2Method);
        if (!TextUtils.isEmpty(password)) {
          wifiConfiguration.enterpriseConfig.setPassword(password);
        }
        break;
      default:
        break;
    }
    return wifiConfiguration;
  }

然后調(diào)用WifiManager的setWifiApEnabled方法來設(shè)置wifiConfiguration,因為是隱藏的,需要通過反射:

 try {
      Method method = mWifManager.getClass().getMethod(
          "setWifiApEnabled", WifiConfiguration.class, Boolean.TYPE);
      boolean enable = (Boolean) method.invoke(mWifManager, config, true);

      if (enable) {
        Log.d("WiFi", "熱點已開啟");
      } else {
        Log.d("WiFi", "創(chuàng)建熱點失敗");
      }
    } catch (Exception e) {
      e.printStackTrace();
    }

關(guān)閉熱點

關(guān)閉熱點比較簡單,也是用上面的方法,第二個參數(shù)傳false就行了:

public void closeWifiAp() {
    try {
      Method method = mWifiManager.getClass().getMethod("setWifiApEnabled",   WifiConfiguration.class, boolean.class);
      method.invoke(mWifiManager, null, false);
    } catch (Exception e) {
      e.printStackTrace();
    }
  }

監(jiān)聽熱點狀態(tài)

熱點的狀態(tài)可以通過廣播的方式來監(jiān)聽:

 public static final String WIFI_AP_STATE_CHANGED_ACTION =
    "android.net.wifi.WIFI_AP_STATE_CHANGED";

不過這個變量是隱藏的,只能直接通過值來注冊廣播:

  IntentFilter filter = new IntentFilter();
    filter.addAction("android.net.wifi.WIFI_AP_STATE_CHANGED");

然后在廣播中獲取state:

int state = intent.getIntExtra("wifi_state", 0);

wifi熱點有如下幾種狀態(tài):

#WIFI_AP_STATE_DISABLED  
#WIFI_AP_STATE_DISABLING
#WIFI_AP_STATE_ENABLED
#WIFI_AP_STATE_ENABLING
#WIFI_AP_STATE_FAILED

其他API:

獲取WiFI熱點當(dāng)前狀態(tài),返回值就是上面五種狀態(tài):

public int getWifiApState()

判斷WiFi熱點是否打開:

public boolean isWifiApEnabled()

獲取當(dāng)前wifi熱點的WifiConfiguration:

public WifiConfiguration getWifiApConfiguration()

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

最新評論

威远县| 东兴市| 平阳县| 都兰县| 广平县| 汝阳县| 册亨县| 普洱| 青州市| 固原市| 博野县| 晋江市| 潢川县| 衡山县| 古蔺县| 广河县| 环江| 吉木乃县| 丽水市| 新密市| 蒙阴县| 烟台市| 绥化市| 长兴县| 华蓥市| 乐业县| 宁德市| 友谊县| 漠河县| 襄樊市| 驻马店市| 刚察县| 林芝县| 茶陵县| 海宁市| 鹤山市| 宿松县| 贡山| 宝山区| 郓城县| 紫金县|