如何删除Wifi Direct记忆的群组?
如果可能,允许删除组的功能是什么?
感谢。
答案 0 :(得分:0)
据我所知,Wi-Fi Direct持久群组尚未实现(在Android API级别17中)。 因此,您不必费心删除已存在的组(因为它们尚不存在)。
答案 1 :(得分:0)
唯一的方法是删除具有内省的组:
Method deletePersistentGroupMethod = WifiP2pManager.class.getMethod("deletePersistentGroup", WifiP2pManager.Channel.class, int.class, WifiP2pManager.ActionListener.class);
for (int netid = 0; netid < 32; netid++) {
deletePersistentGroupMethod.invoke(this.manager, this.channel, netid, null);
}