有没有办法检查是否启用了移动热点(WifiAP)? 可以使用
激活WifiAPMethod enableWifiAP = wifiMan.getClass().getMethod(
"setWifiApEnabled", WifiConfiguration.class, boolean.class);
enableWifiAP.invoke(wifiMan, wiFiProfile.getConfig(), enabled);
但是没有getWifiApEnabled这样的方法。
想点什么吗?
诚恳, Wolfen的
编辑:
我找到了解决方案:
return getWifiApState() == WIFI_AP_STATE.WIFI_AP_STATE_ENABLED;
但看起来我无法调用WIFI_AP_STATE。