问题标签 [wifi-direct]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
3 回答
8535 浏览

android-intent - setting group owner in android wifi direct

Device with the higher intent becomes the group owner is said in the following link: http://developer.bada.com/help_2.0/index.jsp?topic=%2Fcom.osp.cppappprogramming.help%2Fhtml%2Fdev_guide%2Fnet%2Fwi-fi_direct_connectivity.htm

I tried the following in the google-demo project of wifi-direct. In the main activity class from where broadcast receiver was called I set the priority as follows while running in one device.

While running the code in next device I didn't set the priority.

So as per the link the device with the higher priority should have been the group owner but setting priority does not seem working. Is there a way to explicitly assign a particular device as the group owner while connection establishes between two devices ?

0 投票
1 回答
2010 浏览

java - WifiP2pManager 在 CreateGroup 上返回 BUSY 状态

有时当我尝试在 WifiDirect 中创建一个组时,它会返回

消息作为失败的原因。我不确定为什么会这样。

但是如果我重新启动 WIFI 接口,它会再次工作。这可能是什么原因?如何避免这种情况?如果发生这种情况,有什么办法可以克服吗?

谢谢

0 投票
2 回答
11029 浏览

android - Android 和 WiFi Direct - 连接问题

所以我一直在使用 WiFi Direct 很长一段时间,在整个过程中,我一直被连接问题所困扰。自从更新到 4.1 后,不再有打开和关闭 WiFi Direct 的硬按钮,我似乎总是与连接不一致。对于我的使用,我不需要找到对等点,只需从早期交互中存储的设备地址连接到对等点。有时设备会立即连接,有时第二台设备不会收到邀请,有时第一台设备会被卡住,试图无限期地发送邀请。下面是我的连接代码,它非常简单,所以我不确定出了什么问题。任何帮助,将不胜感激!非常感谢你。

0 投票
0 回答
47 浏览

wifi - 如何编辑android的标准类?

我正在尝试构建一个从 WiFi 接入点获取信息的应用程序,但是,此信息不是标准信息。我正在从接入点传输附加信息。现在要接收此信息,我需要修改“WifiInfo”类。我不确定我该怎么做。我试着用谷歌搜索它,但没有运气。

是否有可能做到这一点?如果是,如何,我可以使用任何替代方式吗?

在此先感谢您的帮助。:)

0 投票
1 回答
1264 浏览

android - Wi-Fi 直连失败 - Nexus 7

在我的 Nexus 7 上,每当我尝试连接到我的 Galaxy Nexus 时,它会立即失败并返回原因为 0(这是非常无信息的,因为 0 是错误)。但是,尝试在我的 Galaxy Nexus 上连接没有这样的问题。有任何想法吗?简单地使用 manager.connect 方法,没有什么特别的事情发生。find peers 方法似乎也没有任何问题。非常感谢。

0 投票
2 回答
1502 浏览

java - 两个 Wi-Fi Direct 设备的“配对”时间

Wi-Fi Direct带有硬件的设备之间直接连接的速度有多快?两个以正常速度在街上走过的人是否可以使用Wi-Fi Direct设备交换一些信息?

0 投票
3 回答
211 浏览

android - android sdk 与 wi-fi direct 不兼容

我正在开发一个使用 wi-fi direct 模块的应用程序。众所周知,它在 Android 4.0 之前不可用,但我想在没有 wi-fi direct 的情况下保持兼容性。

问题是我正在使用来自 Channel 或 WifiP2pManager 等类的实例变量。当然,在 ICS 的早期版本中,它们将不可用。我只是在遵循 Android 官方开发者指南,所以看起来我没有做错任何事情。

关于如何解决这个问题的任何想法?

谢谢!

0 投票
2 回答
2899 浏览

android - 在 Android 上使用 Wi-Fi Direct 进行客户端/对等通信

我有三个 Android 设备:A、B 和 C。它们通过 Wi-Fi Direct 连接(假设 B 是组所有者)。我只有两个问题:

  1. B 可以作为客户端连接到另一个 Wi-Fi Direct 组吗?
  2. A 或 C 可以作为客户端连接到另一个 Wi-Fi Direct 组吗?
0 投票
0 回答
187 浏览

java - forward stream from machine to another java

I am new to socket programming in java and Android. I have three phones A, B, and C. With Wifi-Direct, A can only see B. B, in the middle, can see A and C. And C can only see B. I want to send a file from A to C. So, A should send it to B and B will forward the data/packets to C.

I don't know where to start. should all phones use filestream? If so, how can B know if he receives data from A that he should forward it to C?

If you can show me good tutorial or small sample code this will be great.

0 投票
5 回答
5037 浏览

android - Android Wifi Direct:连接到已知对等方时避免用户接受

使用 WiFi Direct 连接到对等点时,需要用户许可。我知道如果没有用户从未给予许可,就无法建立连接,并且对这种功能有功能请求: https ://code.google.com/p/android/issues/detail?id=30880

但是我不需要这个功能,在第一次连接时请求许可就可以了(也更安全)。是否有任何方法可以仅在第一次请求许可?并且稍后尝试连接到同一个对等方时,不需要权限。