0
我需要在啓動時啓動我的應用程序。我發現this answer服務在啓動時啓動。我也發現this thread他們使用intent-filter
爲了接收在啓動廣播的android.content.Intent.BOOT_COMPLETED_ACTION
。在啓動時啓動應用程序的最佳方式?
如果我不需要啓動服務,獲取設備啓動事件的最佳方式是什麼?
我需要在啓動時啓動我的應用程序。我發現this answer服務在啓動時啓動。我也發現this thread他們使用intent-filter
爲了接收在啓動廣播的android.content.Intent.BOOT_COMPLETED_ACTION
。在啓動時啓動應用程序的最佳方式?
如果我不需要啓動服務,獲取設備啓動事件的最佳方式是什麼?
使用android.intent.action.BOOT_COMPLETED
也在onRecieve功能添加許可"android.permission.RECEIVE_BOOT_COMPLETED"
啓動luncher actiivity註冊接收
public void onReceive(Context context, Intent intent) {
Intent i = new Intent(context, First.class);
i.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
context.startActivity(i);
}