0

我想知道 wifidirect 中 onPeerListAvailable() 返回的对等列表中是否已经有任何组所有者?有没有办法知道。谢谢

4

2 回答 2

0

Did you check this http://developer.android.com/reference/android/net/wifi/p2p/WifiP2pDevice.html#isGroupOwner%28%29

public boolean isGroupOwner ()
Added in API level 14

Returns true if the device is a group owner
于 2015-07-15T21:37:50.770 回答
0

通常,您需要建立连接才能知道谁是组所有者。

然后,如果您是组所有者,您会在调用 onConnectionInfoAvailable 时获得信息,并且要调用它,您应该在收到通知您确实已连接的事件后调用 requestConnectionInfo()。

从客户端,您只需获取组所有者的 IP 地址,

于 2015-07-16T06:10:54.733 回答