我的目标是API 17,并使用下面的代码启用WiFi直连(P2P).
一切正常(找到并连接到同行),但是当没有使用WiFi-direct时不断关闭(看起来它取决于Android手机 – 我的约3-5分钟)这也将关掉WiFi让我失去了互联网连接.
我有一个接收器,可以检测P2P状态何时发生变化以重新打开它,但即使没有连接到任何对等端,也能保持P2P始终处于开启状态.
是否有可能继续ping Android手机本身才能做到这一点?还有其他建议吗?
public void onReceive(Context context,Intent intent) {
String action = intent.getAction();
if (WifiP2pManager.WIFI_P2P_STATE_CHANGED_ACTION.equals(action)) {
// UI update to indicate wifi p2p status.
int state = intent.getIntExtra(WifiP2pManager.EXTRA_WIFI_STATE,-1);
if (state == WifiP2pManager.WIFI_P2P_STATE_ENABLED) {
// Wifi Direct mode is enabled
activity.setIsWifiP2pEnabled(true);
} else {
activity.setIsWifiP2pEnabled(false);
activity.resetData();
}
最佳答案
你应该获得WifiLock.或者你呢?
原文链接:https://www.f2er.com/android/431244.html来自WakeLock的javadoc条目:
Normally the Wi-Fi radio may turn off when the user has not used the
device in a while. Acquiring a WifiLock will keep the radio on until
the lock is released.
在WifiLock上查看更多信息:
http://developer.android.com/reference/android/net/wifi/WifiManager.WifiLock.html
阅读回答这个问题:Is using WakeLock overkill while using WifiLock on Android?