Android中的对等设备上的WiFi直接图像共享

问题描述:

我已经成功实现了wifi直接示例演示,并且双向图像共享正常工作,但是我的问题是当一个设备A发送邀请以连接到设备B并且设备B取消该邀请,我无法处理该事件的取消回调,因为它是由Android生成的。Android中的对等设备上的WiFi直接图像共享

任何人都可以帮我解决我的问题。

以下是我的广播reciever码和连接码:

/** 
* A BroadcastReceiver that notifies of important wifi p2p events. 
*/ 
public class WiFiDirectBroadcastReceiver extends BroadcastReceiver { 

    private WifiP2pManager manager; 
    private Channel channel; 
    private WiFiDirectActivity activity; 

    /** 
    * @param manager WifiP2pManager system service 
    * @param channel Wifi p2p channel 
    * @param activity activity associated with the receiver 
    */ 
    public WiFiDirectBroadcastReceiver(WifiP2pManager manager, Channel channel, 
      WiFiDirectActivity activity) { 
     super(); 
     this.manager = manager; 
     this.channel = channel; 
     this.activity = activity; 
    } 

    /* 
    * (non-Javadoc) 
    * @see android.content.BroadcastReceiver#onReceive(android.content.Context, 
    * android.content.Intent) 
    */ 
    @Override 
    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(); 

      } 
      Log.d(WiFiDirectActivity.TAG, "P2P state changed - " + state); 
     } else if (WifiP2pManager.WIFI_P2P_PEERS_CHANGED_ACTION.equals(action)) { 

      // request available peers from the wifi p2p manager. This is an 
      // asynchronous call and the calling activity is notified with a 
      // callback on PeerListListener.onPeersAvailable() 
      if (manager != null) { 
       manager.requestPeers(channel, (PeerListListener) activity.getFragmentManager() 
         .findFragmentById(R.id.frag_list)); 
      } 
      Log.d(WiFiDirectActivity.TAG, "P2P peers changed"); 
     } else if (WifiP2pManager.WIFI_P2P_CONNECTION_CHANGED_ACTION.equals(action)) { 

      if (manager == null) { 
       return; 
      } 

      NetworkInfo networkInfo = (NetworkInfo) intent 
        .getParcelableExtra(WifiP2pManager.EXTRA_NETWORK_INFO); 

      if (networkInfo.isConnected()) { 

       // we are connected with the other device, request connection 
       // info to find group owner IP 

       DeviceDetailFragment fragment = (DeviceDetailFragment) activity 
         .getFragmentManager().findFragmentById(R.id.frag_detail); 
       manager.requestConnectionInfo(channel, fragment); 
      } else { 
       // It's a disconnect 
       activity.resetData(); 
      } 
     } else if (WifiP2pManager.WIFI_P2P_THIS_DEVICE_CHANGED_ACTION.equals(action)) { 
      DeviceListFragment fragment = (DeviceListFragment) activity.getFragmentManager() 
        .findFragmentById(R.id.frag_list); 
      fragment.updateThisDevice((WifiP2pDevice) intent.getParcelableExtra(
        WifiP2pManager.EXTRA_WIFI_P2P_DEVICE)); 

     } 
    } 
} 

对于连接,我用下面的代码:

WifiP2pConfig config = new WifiP2pConfig(); 
     config.deviceAddress = device.deviceAddress; 
     config.wps.setup = WpsInfo.PBC; 
     if (progressDialog != null && progressDialog.isShowing()) { 
      progressDialog.dismiss(); 
     } 
     device.wps.setup = WpsInfo.PBC; 
     device.groupOwnerIntent = 0; // I want this device to become the owner 
     manager.connect(channel, device, new ActionListener() { 

      @Override 
      public void onSuccess() { 
       // WiFiDirectBroadcastReceiver will notify us. Ignore for now. 
      } 

      @Override 
      public void onFailure(int reason) { 
       Toast.makeText(WiFiDirectActivity.this, "Connect failed. Retry.", 
         Toast.LENGTH_SHORT).show(); 
      } 
     }); 

类需要实现ConnectionInfoListener。并且在函数onConnectionInfoAvailable(最终的WifiP2pInfo信息)中,您可以检查是否已建立成功的连接。类型为WifiP2pInfo的info参数包含有关连接的信息。它包含一个叫做groupFormed的布尔值,它指示一个p2p组是否已经成功形成。你也可以从中检索设备是否groupOwner和groupOwner的IP等

@覆盖 公共无效onConnectionInfoAvailable(最终WifiP2pInfo资讯){

// After the group negotiation, we check if this device 
    // is acting as group owner 

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

     // Do whatever you want the group owner to do 

    } else if (info.groupFormed) { 
     // The device now act as the slave device, 
     // and the other connected device is group owner 
} 

谷歌提供了一个很好的演示应用程序使用WiFi Direct在两台设备之间发送图像。检查它的实现并尝试构建它的顶部。链接:http://developer.android.com/guide/topics/connectivity/wifip2p.html

希望这会有所帮助。如果您有任何问题,请告诉我。

得到它:

Check whether android wifip2p connection was successful?