Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有什么方法可以在第三方应用程序上获取所有可用的 wifi 网络。在做了很多谷歌搜索后,我得到了执行此操作的代码,但在安装应用程序后,用户需要进行手动设置。我不需要这个。
我希望当我安装我的应用程序时它只显示可用的(SSID)网络而没有任何设置。
//使用下面的函数
public boolean isWiFiEnable() { if( WLANInfo.getWLANState() == WLANInfo.WLAN_STATE_CONNECTED ) { return true; } return false; }