我找到的消息来源说“这是不可能的,没有具有此功能的SDK”,但这些来源是在2010年到2011年之间。
感谢您的回答!
答案 0 :(得分:1)
是的,尝试这种方法......
WifiManager wifiManager = (WifiManager) getBaseContext()
.getSystemService(Context.WIFI_SERVICE);
wifiManager.setWifiEnabled(false);
try {
wifiManager.getClass()
.getMethod("setWifiApEnabled",
WifiConfiguration.class,
boolean.class)
.invoke(wifiManager, null, false);
} catch (Exception e) {
Log.e(Main.TAG, "Cannot call: setWifiApEnabled", e);
}