91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

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

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

东台市| 兴隆县| 叶城县| 丁青县| 瓦房店市| 上虞市| 河东区| 平邑县| 光山县| 卢湾区| 喀什市| 东平县| 宁夏| 榆中县| 甘肃省| 高淳县| 西平县| 屏东市| 海南省| 宜春市| 怀化市| 沾益县| 大理市| 关岭| 安泽县| 马鞍山市| 蒙阴县| 永定县| 安图县| 依安县| 囊谦县| 新化县| 长泰县| 和平区| 工布江达县| 玉龙| 石嘴山市| 边坝县| 青州市| 盐池县| 郎溪县|