Android 的 Bonjour/ZeroConf 实现(HoneyComb)
我正在尝试使用 Honeycomb 在 Android 平板电脑的 Android 应用程序上实现 bonjour/zero conf。我正在使用 jmDns 库来搜索所有可用的设备。我需要连接到 wifi 的 Android 设备列表。
基本上,我将它们添加到列表中,以便我可以显示所有可用设备的列表。现在,当我在模拟器上运行此代码时,没有任何内容添加到我的列表中(但列表中有 5-6 个设备)
任何人都可以帮忙提供一些代码片段。我不确定 Honeycomb 是否支持 bonjour/zero conf 或者我的模拟器有问题。提前感谢
I am trying to implement bonjour/zero conf on my android app for Android tablet using Honeycomb. I am using jmDns library for searching the all the available devices. I need a list of android devices connected to wifi.
Basically, i am adding them in a list so that i can display a list of all available devices. Now when I am running this code on emulator, nothing is added to my list( but there are 5-6 devices in the list)
Can anyone please help in providing some code snippet. I am not sure if bonjour/zero conf is supported by Honeycomb or its a problem with my emulator. Thanx in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
模拟器与主机之间有一个专用虚拟网络。 Zeroconf 使用广播来查询设备,并且此查询仅在此虚拟网络上传播。
http://developer.android.com/guide/developing/devices/emulator .html#emulatornetworking
Emulator has a private virtual network between it and host machine. Zeroconf uses broadcast to query for devices and this query only propagates on this virtual network.
http://developer.android.com/guide/developing/devices/emulator.html#emulatornetworking