Android-Listen for mobile phone boot events

Source: Internet
Author: User

Android-Listen for mobile phone boot events

 

In this article, we mainly listen on the boot broadcast to monitor the boot status of the mobile phone. In Android, we can monitor some system services and system-level operations through the broadcast mechanism, run the Code directly.

1. Create a broadcast receiver class BootCompleteReceiver

The callback method in this class is automatically called after the mobile phone is turned on. I will print the relevant logs here. You can implement the specific business logic as needed.

The Code is as follows:

 

Package cn. lyz. mobilesafe. explorer; import android. content. broadcastReceiver; import android. content. context; import android. content. intent; import android. util. log;/*** register boot broadcast * @ author liuyazhuang **/public class BootCompleteReceiver extends BroadcastReceiver {@ Overridepublic void onReceive (Context context, Intent intent) {Log. I (BootCompleteReceiver, the mobile phone boot event has been monitored );}}

 

2. Register broadcast in AndroidManifest. xml

The implementation is as follows:

 

           
               
                          
  
 
All right, all done.

 

 

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.