其他分享
首页 > 其他分享> > android – 如何在WifiDirect中创建设备groupOwner?

android – 如何在WifiDirect中创建设备groupOwner?

作者:互联网

我开发了WiFi直接应用程序,并使用此代码来区分groupOwner和其他设备.但是groupOwner总是随机制作的.我想确保每次建立连接时连接设备都像groupOwner一样.我的代码:

if (info.groupFormed && info.isGroupOwner) {

     // GroupOwner     

   } else if (info.groupFormed) {


   } 

解决方法:

您必须使用WifiP2pConfig对象的属性groupOwnerIntent,并将其传递给connect()调用.例如:

config.groupOwnerIntent = 15;

值范围在0-15之间,值越高,成为groupOwner的可能性越高.

标签:android,wifi-direct
来源: https://codeday.me/bug/20190715/1467821.html