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.
我可以检查无线是否启用,即使没有连接到任何网络。我需要启用无线才能获得更准确的 gps 读数。但我不需要向任何网络让步(似乎除非 wi-fi 处于活动状态,否则设备不能使用网络进行定位)。对于数据传输,我将使用移动网络。
那么,如何检查无线是否已激活?
public boolean isWifiOn() { WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE); return wifi.isWifiEnabled(); }