亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

Android中怎么實現開機自啟動

發布時間:2021-06-26 15:00:32 來源:億速云 閱讀:219 作者:Leah 欄目:移動開發

本篇文章為大家展示了Android中怎么實現開機自啟動,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

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的許可,允許接收系統啟動消息,在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,可以接收系統啟動消息,在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>

上述內容就是Android中怎么實現開機自啟動,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。

向AI問一下細節

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

AI

西昌市| 休宁县| 河东区| 太原市| 奎屯市| 威宁| 西充县| 常熟市| 平凉市| 广东省| 新巴尔虎左旗| 平塘县| 洛宁县| 九寨沟县| 临海市| 金堂县| 定西市| 保亭| 尖扎县| 台东市| 金秀| 安新县| 察哈| 息烽县| 尼木县| 凯里市| 永善县| 临武县| 泰州市| 石城县| 乌拉特中旗| 公安县| 太仆寺旗| 平安县| 西贡区| 汶上县| 文水县| 烟台市| 珲春市| 东光县| 剑阁县|