Use of Android Broadcast

Source: Internet
Author: User

In activity, register a demo of the broadcast.

A total of 3 steps

First step: Define a Broadcastreceiver broadcast receive class:

Private New Broadcastreceiver () {        @Override        publicvoid  onreceive (context context, Intent Intent) {            = intent.getaction ();             if (Action.equals (action_name)) {                toast.maketext (Test. This) Handle the broadcast "$" corresponding to the action name );}}            ;

Step Two: Register the broadcast:

 Public void Registerboradcastreceiver () {        new  intentfilter ();        Myintentfilter.addaction (action_name);         // Register a      broadcast         registerreceiver (Mbroadcastreceiver, myintentfilter);    }

Step three: Trigger the response

Mbtnmsgevent =NewButton ( This); Mbtnmsgevent.settext ("Send broadcast"); Mbtnmsgevent.setonclicklistener (NewOnclicklistener () {@Override Public voidOnClick (View v) {Intent mintent=NewIntent (action_name); Mintent.putextra ("Yaner","send a broadcast, the equivalent of transmitting data here"); //Send broadcastSendbroadcast (mintent);    }        }); 

Finally, the complete code is attached:

Package My.yaner;import Android.app.activity;import android.content.broadcastreceiver;import Android.content.context;import Android.content.intent;import Android.content.intentfilter;import Android.os.bundle;import Android.view.view;import Android.view.view.onclicklistener;import Android.widget.Button; Import Android.widget.linearlayout;import android.widget.Toast; Public classTest extends activity{PrivateFinal String Action_name ="Send broadcast"; PrivateButton mbtnmsgevent =NULL; protected voidonCreate (Bundle savedinstancestate) {super.oncreate (savedinstancestate); //Register a broadcastRegisterboradcastreceiver (); LinearLayout Mlinearlayout=NewLinearLayout ( This); Mbtnmsgevent=NewButton ( This); Mbtnmsgevent.settext ("Send broadcast");        Mlinearlayout.addview (mbtnmsgevent);                Setcontentview (mlinearlayout); Mbtnmsgevent.setonclicklistener (NewOnclicklistener () {@Override Public voidOnClick (View v) {Intent mintent=NewIntent (action_name); Mintent.putextra ("Yaner","send a broadcast, the equivalent of transmitting data here"); //Send broadcastSendbroadcast (mintent);    }        }); }        PrivateBroadcastreceiver Mbroadcastreceiver =NewBroadcastreceiver () {@Override Public voidOnReceive (Context context, Intent Intent) {String action=intent.getaction (); if(Action.equals (action_name)) {Toast.maketext (Test. This,"address the broadcast corresponding to the action name", $);        }        }            };  Public voidRegisterboradcastreceiver () {intentfilter myintentfilter=NewIntentfilter ();        Myintentfilter.addaction (Action_name); //Register a broadcastregisterreceiver (Mbroadcastreceiver, Myintentfilter); }}

Use of Android Broadcast

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.