4

如何删除 Wifi Direct 记忆的群组?

如果可能,允许删除组的功能是什么?

谢谢。

4

2 回答 2

1

唯一的方法是使用自省删除组:

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);
}
于 2017-07-03T07:17:44.900 回答
0

据我所知,Wi-Fi Direct Persistent 组尚未实现(在 Android API 级别 17 中)。因此,您不必费心删除记忆的组,因为它们不存在(尚)。

于 2013-03-11T10:34:12.993 回答