Home | History | Annotate | Download | only in connect-devices-wirelessly

Lines Matching full:receiver

18       <li><a href="#receiver">Set Up the Broadcast Receiver and Peer-to-Peer
61 <h2 id="receiver">Set Up a Broadcast Receiver and Peer-to-Peer Manager</h2>
157 <p>Finally, add code to register the intent filter and broadcast receiver when
167 receiver = new WiFiDirectBroadcastReceiver(mManager, mChannel, this);
168 registerReceiver(receiver, intentFilter);
174 unregisterReceiver(receiver);
248 <p>Now modify your broadcast receiver's {@link
253 need to pass this listener into the receiver somehow. One way is to send it
254 as an argument to the broadcast receiver's constructor.
344 android.content.BroadcastReceiver#onReceive(Context, Intent) onReceive()} method of the broadcast receiver, and modify the section