android上怎样让一个Service开机自动启动

发布于 2022-09-30 19:58:03 字数 3671 浏览 19 评论 0

android上怎样让一个Service开机自动启动

1.首先开机启动后系统会发出一个Standard Broadcast Action,名字叫android.intent.action.BOOT_COMPLETED,这个Action只会发出一次。

2.构造一个IntentReceiver类,重构其抽象方法onReceiveIntent(Context context, Intent intent),在其中启动你想要启动的Service。

3.在AndroidManifest.xml中,首先加入<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"></uses-permission>来获得BOOT_COMPLETED的使用许可,然后注册前面重构的IntentReceiver类,在其<intent-filter>中加入<action android:name="android.intent.action.BOOT_COMPLETED" /> ,以使其能捕捉到这个Action。

一个例子
xml:

  1. <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"></uses-permission>
  2. <receiver android:name=".OlympicsReceiver" android:label="@string/app_name">
  3.     <intent-filter>
  4.        <action android:name="android.intent.action.BOOT_COMPLETED" />
  5.        <category android:name="android.intent.category.LAUNCHER" />
  6.     </intent-filter>
  7. </receiver>

复制代码java:

  1. public class OlympicsReceiver extends IntentReceiver
  2. {
  3.     /*要接收的intent源*/
  4.     static final String ACTION = "android.intent.action.BOOT_COMPLETED";
  5.         
  6.     public void onReceiveIntent(Context context, Intent intent)
  7.     {
  8.         if (intent.getAction().equals(ACTION))
  9.         {
  10.                   context.startService(new Intent(context,
  11.                        OlympicsService.class), null);//启动倒计时服务
  12.              Toast.makeText(context, "OlympicsReminder service has started!", Toast.LENGTH_LONG).show();
  13.         }
  14.     }
  15. }

复制代码注意:现在的IntentReceiver已经变为BroadcastReceiver,OnReceiveIntent为onReceive。所以java这边的代码为:
(也可以实现应用程序开机自动启动)

  1. public class OlympicsReceiver extends BroadcastReceiver
  2. {
  3.     /*要接收的intent源*/
  4.     static final String ACTION = "android.intent.action.BOOT_COMPLETED";
  5.         
  6.     public void onReceive(Context context, Intent intent)
  7.     {
  8.         if (intent.getAction().equals(ACTION))
  9.         {
  10.                   context.startService(new Intent(context,
  11.                        OlympicsService.class), null);//启动倒计时服务
  12.              Toast.makeText(context, "OlympicsReminder service has started!", Toast.LENGTH_LONG).show();
  13.             //这边可以添加开机自动启动的应用程序代码
  14.         }
  15.     }
  16. }

复制代码

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文