Android broadcastreceiver Application

Source: Internet
Author: User

1. Create a consumer in two ways: Dynamic and Static:

(1) static registration:

First, customize the number of referers,

Public class myreceiver extends broadcastreceiver {

@ Override
Public void onreceive (context, intent ){
// Todo auto-generated method stub
Toast. maketext (context, "myjavaser broadcast", 10000). Show ();
}

}

 

Then register with androidmanifest:

<Cycler Android: Name = ". mycycler">
<Intent-filter>
<Action Android: Name = "com. Test. Broadcasting"/>
</Intent-filter>
</Cycler>

 

 

(2) Dynamic Registration:

Private void regreceiver (){
Intentfilter = new intentfilter ();
Intentfilter. addaction ("com. Test. Broadcasting ");
// Register broadcastreceiver
This. registerreceiver (receiver, intentfilter );

// Cancel registration
// This. unregisterreceiver (receiver );
}

Private broadcastreceiver receiver ER = new broadcastreceiver (){
@ Override
Public void onreceive (context, intent ){
Toast. maketext (context, "receive broadcast", 10000). Show ();
}
};

 

 

2. Send broadcast:

This is very simple, just a line of code:

This. sendbroadcast (new intent ("com. Test. Broadcasting "));

 

 

3. Application scenarios:

The most common is SD plugging broadcast registration (Android. content. Intent. action_media_mounted ).

Related Article

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.