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.