コード例 #1
0
 public void searchAll() {
   if (m_upnpService != null) {
     Log.e(TAG, "Search invoke");
     m_upnpService.getRegistry().removeAllRemoteDevices();
     m_upnpService.getControlPoint().search();
   } else {
     Log.e(TAG, "Upnp Service = null");
   }
 }
コード例 #2
0
 public ControlPoint getControlPoint() {
   return m_upnpService != null ? m_upnpService.getControlPoint() : null;
 }