Android监听开机广播自启动程序
應用開機自啟動的原理是監聽開機廣播android.intent.action.BOOT_COMPLETED, 監聽到該廣播時會啟動進程,進入Application
1、在Manifest中聲明廣播
?? ? ? ?<receiver android:name=".server.BluetoothBootBroadcastReceiver">??
???????? ? ?<intent-filter>??
????????????? ? <action android:name="android.intent.action.BOOT_COMPLETED"></action>??
????????????????<category android:name="android.intent.category.DEFAULT" />??
????????????</intent-filter>??
????????</receiver>??
? ? </application>
聲明權限
? ? <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
?
2、廣播接收類BluetoothBootBroadcastReceiver
public class BluetoothBootBroadcastReceiver extends BroadcastReceiver {
? ? private static final String TAG = "BluetoothBootBroadcastReceiver";
? ? private static final boolean DBG = true;
? ? @Override
? ? public void onReceive(Context context, Intent intent) {
? ? ? ? if (intent.getAction().equals(Intent.ACTION_BOOT_COMPLETED)) {
? ? ? ? ? ? if (DBG) {
? ? ? ? ? ? ? ? Log.d(TAG, "onReceive BOOT_COMPLETED_ACTION");
? ? ? ? ? ? }
? ? ? ? }
? ? }
}
3、Application中new廣播接受器
4、運行流程
Android系統啟動發出ACTION_BOOT_COMPLETED時,會啟動進程,BluetoothBootBroadcastReceiver收到開機廣播ACTION_BOOT_COMPLETED,
然后可以在收到廣播時需要的事情。
?
?
?
總結
以上是生活随笔為你收集整理的Android监听开机广播自启动程序的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: MyBatis图片
- 下一篇: NENU 模拟练习题(问题A~问题G)