如何删除 Wifi Direct 记忆的群组?
如果可能,允许删除组的功能是什么?
谢谢。
唯一的方法是使用自省删除组:
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);
}
据我所知,Wi-Fi Direct Persistent 组尚未实现(在 Android API 级别 17 中)。因此,您不必费心删除记忆的组,因为它们不存在(尚)。