第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問(wèn)題,去搜搜看,總會(huì)有你想問(wèn)的

WifiInfo getSSID 斷開連接時(shí)返回最后一個(gè) SSID

WifiInfo getSSID 斷開連接時(shí)返回最后一個(gè) SSID

守候你守候我 2023-05-10 17:18:16
我創(chuàng)建了一個(gè)需要處理 WiFi 的應(yīng)用程序。我有這段代碼this.wifiManager = (WifiManager) this.context.getSystemService(Context.WIFI_SERVICE);String currentSSID = wifiManager.getConnectionInfo().getSSID();問(wèn)題是當(dāng)我已經(jīng)連接到熱點(diǎn)時(shí)當(dāng)前的 SSID 是有效的但是當(dāng)我斷開連接時(shí)它返回最后一個(gè)熱點(diǎn)的 SSID 而不是像 or 之類的null東西equivalent。
查看完整描述

1 回答

?
桃花長(zhǎng)相依

TA貢獻(xiàn)1860條經(jīng)驗(yàn) 獲得超8個(gè)贊

經(jīng)過(guò)一些實(shí)驗(yàn)后,我發(fā)現(xiàn)當(dāng)與 hospot 的連接丟失時(shí),wifiInfo 不會(huì)更新,因此要修復(fù)它,您可以使用


ConnectivityManager manager = (ConnectivityManager) context.getSystemService(Context.CONNECTIVITY_SERVICE);

boolean isConnected = manager.getNetworkInfo(ConnectivityManager.TYPE_WIFI).isConnected();

this.wifiManager = (WifiManager) this.context.getSystemService(Context.WIFI_SERVICE);

String currentSSID = wifiManager.getConnectionInfo().getSSID();

/*

Surround your ssid with " when you compare it with the ssid of the wifimanager

because it will return your SSID surouded by quotes

*/

if(currentSSID.equals("\"" + your_net_ssid + "\"") && isConnected){

 //You are realy connected to the hospot

}else{

 //The connection dont exist

}

希望這會(huì)很有用!


查看完整回答
反對(duì) 回復(fù) 2023-05-10
  • 1 回答
  • 0 關(guān)注
  • 142 瀏覽
慕課專欄
更多

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購(gòu)課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)