1. 程式人生 > >android 開機自啟動

android 開機自啟動

end pla extend class ive rec completed 廣播 manifest

原理:Android系統在開機的時候會發出一個廣播。這樣我們就能夠接收這個廣播,然後 啟動我們的應用。廣播接收器必須在xml裏面配置,由於xml裏面配置的廣播接收器 是不隨著應用的退出而退出的。


廣播接收器:

package com.yangshidesign.boot;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

public class BootReceiver extends BroadcastReceiver {
	@Override
	public void onReceive(Context context, Intent intent) {
		Intent i = new Intent(context, UnityPlayerNativeActivity.class);
		//這個必須加入flags
		i.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
		context.startActivity(i);
	}
}

在manifest的application標簽裏面配置:

    <!-- 開機啟動 -->
	<receiver android:name="com.yangshidesign.boot.BootReceiver">
		<intent-filter>
			<action android:name="android.intent.action.BOOT_COMPLETED"/>
			<category android:name="android.intent.category.HOME"/>
		</intent-filter>
	</receiver>

加上權限:

<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />

這樣就能夠了。

我用的是 紅米note 測試的,要煩煩的設置一番:

點擊 設置 》應用》找到你的應用》點擊,拉究竟下的 權限管理》自己主動啟動》完畢。


android 開機自啟動