所以我设法与另一台设备建立了一个wifip2p连接。现在我想这样做,我的performSearch方法只有在我的onResume()在WiFiDirectActivity中运行时才与其他设备同步时才会运行。我怎么做?有没有办法写出像
这样的东西 if (I am not connected with p2p) {
performSearch();
}
onResume()中的?这是我现在的代码
public class WiFiDirectActivity extends Activity implements WifiP2pManager.ChannelListener, DeviceListFragment.DeviceActionListener
...
public void onResume() {
super.onResume();
receiver = new WiFiDirectBroadcastReceiver(manager, channel, this);
registerReceiver(receiver, intentFilter);
performSearch();
}
谢谢。