中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

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

甘洛县| 自贡市| 土默特右旗| 宁国市| 阜阳市| 湖南省| 论坛| 双鸭山市| 理塘县| 麦盖提县| 名山县| 安国市| 梁平县| 道真| 沛县| 滨州市| 太谷县| 海伦市| 晋中市| 鸡东县| 新泰市| 龙州县| 枝江市| 安庆市| 盘山县| 游戏| 自贡市| 潜山县| 清河县| 山丹县| 宁远县| 永和县| 镇雄县| 屏南县| 南华县| 和林格尔县| 贡嘎县| 喀喇沁旗| 丁青县| 环江| 泰宁县|