Lines Matching full:receiver
12 <li><a href="#receiver">Set Up the Broadcast Receiver and Peer-to-Peer
62 <h2 id="receiver">Set Up a Broadcast Receiver and Peer-to-Peer Manager</h2>
158 <p>Finally, add code to register the intent filter and broadcast receiver when
168 receiver = new WiFiDirectBroadcastReceiver(mManager, mChannel, this);
169 registerReceiver(receiver, intentFilter);
175 unregisterReceiver(receiver);
249 <p>Now modify your broadcast receiver's {@link
254 need to pass this listener into the receiver somehow. One way is to send it
255 as an argument to the broadcast receiver's constructor.
345 android.content.BroadcastReceiver#onReceive(Context, Intent) onReceive()} method of the broadcast receiver, and modify the section