By liran bh | 9/5/2016 | Android Development

Broadcast Receiver

Broadcast receiver handle broadcast intents like boot completed, alarm etc. You need to declare the class in AndroidManifest.xml file and implement an interface

 

<receiver android:permission="android.permission.RECEIVE_BOOT_COMPLETED" 
      android:name=".MyReceiver" 
           android:enabled="true" 
           android:exported="false" > 
           <intent-filter> 
               <action android:name="android.intent.action.BOOT_COMPLETED" /> 
               <category android:name="android.intent.category.LAUNCHER" /> 
           </intent-filter> 
</receiver> 

 

Implementing the interface

public class MyReceiver extends BroadcastReceiver {   

    @Override
    public void onReceive(Context context, Intent intent) {
          // implement
    }
}

 

{{CommentsModel.TotalCount}} Comments

Your Comment

{{CommentsModel.Message}}

Recent Stories

Top DiscoverSDK Experts

User photo
3355
Ashton Torrence
Web and Windows developer
GUI | Web and 11 more
View Profile
User photo
3220
Mendy Bennett
Experienced with Ad network & Ad servers.
Mobile | Ad Networks and 1 more
View Profile
User photo
3060
Karen Fitzgerald
7 years in Cross-Platform development.
Mobile | Cross Platform Frameworks
View Profile
Show All
X

Compare Products

Select up to three two products to compare by clicking on the compare icon () of each product.

{{compareToolModel.Error}}

Now comparing:

{{product.ProductName | createSubstring:25}} X
Compare Now