溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Android中如何實現(xiàn)開機自啟動

發(fā)布時間:2022-04-16 16:17:46 來源:億速云 閱讀:220 作者:iii 欄目:開發(fā)技術(shù)

這篇“Android中如何實現(xiàn)開機自啟動”文章的知識點大部分人都不太理解,所以小編給大家總結(jié)了以下內(nèi)容,內(nèi)容詳細,步驟清晰,具有一定的借鑒價值,希望大家閱讀完這篇文章能有所收獲,下面我們一起來看看這篇“Android中如何實現(xiàn)開機自啟動”文章吧。

1.定義一個BroadcastReceiver

Java代碼

public class BootReceiver extends BroadcastReceiver {   public void onReceive(Context ctx, Intent intent) {   Log.d("BootReceiver", "system boot completed");   //start activity   String action="android.intent.action.MAIN";   String category="android.intent.category.LAUNCHER";   Intent myi=new Intent(ctx,CustomDialog.class);   myi.setAction(action);   myi.addCategory(category);   myi.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);   ctx.startActivity(myi);   //start service   Intent s=new Intent(ctx,MyService.class);   ctx.startService(s);   }   }   public class BootReceiver extends BroadcastReceiver {  public void onReceive(Context ctx, Intent intent) {  Log.d("BootReceiver", "system boot completed");  //start activity  String action="android.intent.action.MAIN";  String category="android.intent.category.LAUNCHER";  Intent myi=new Intent(ctx,CustomDialog.class);  myi.setAction(action);  myi.addCategory(category);  myi.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);  ctx.startActivity(myi);  //start service  Intent s=new Intent(ctx,MyService.class);  ctx.startService(s);  }  }

2.配置Receiver的許可,允許接收系統(tǒng)啟動消息,在AndroidManifest.xml中:

Xml代碼

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

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

3.配置Receiver,可以接收系統(tǒng)啟動消息,在AndroidManifest.xml中

Android開機自啟動的Xml代碼

< receiver android:name=".app.BootReceiver">   < intent-filter>   < action android:name="android.intent.action.BOOT_COMPLETED"/>   < category android:name="android.intent.category.HOME" />   < /intent-filter>   < /receiver>   < receiver android:name=".app.BootReceiver"> < intent-filter> < action android:name="android.intent.action.BOOT_COMPLETED"/> < category android:name="android.intent.category.HOME" /> < /intent-filter> < /receiver>

以上就是關(guān)于“Android中如何實現(xiàn)開機自啟動”這篇文章的內(nèi)容,相信大家都有了一定的了解,希望小編分享的內(nèi)容對大家有幫助,若想了解更多相關(guān)的知識內(nèi)容,請關(guān)注億速云行業(yè)資訊頻道。

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI