我正在尝试使用之前在这里看到的代码将Android设备设置为访问点:
WifiManager wifi = (WifiManager) getSystemService(Context.WIFI_SERVICE);
WifiConfiguration netConfig = new WifiConfiguration();
netConfig.SSID = "MyAccessPoint";
Method method = wifi.getClass().getMethod("setWifiApEnabled", WifiConfiguration.class, boolean.class);
method.invoke(wifi, netConfig, true);
现在,我设法将其打开,但没有在WifiConfiguration中设置的SSID。
这真让我抓狂。
任何人?
最佳答案
在Android 2.3 wifi hotspot API上了解我的工作方式。