尝试在Android上启动时启动服务

问题描述

作为附加信息:BOOT_COMPLETE在挂载外部存储之前发送到应用程序。因此,如果将应用程序安装到外部存储,它将不会收到BOOT_COMPLETE广播消息。

其他答案看起来不错,但我想我会将所有内容都包装成一个完整答案。

您的AndroidManifest.xml文件中需要以下内容

在您的<manifest>元素中:

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

在您的<application>元素中(请确保为您使用完全限定的[或相对]类名BroadcastReceiver):

  1. <receiver android:name="com.example.MyBroadcastReceiver">
  2. <intent-filter>
  3. <action android:name="android.intent.action.BOOT_COMPLETED" />
  4. </intent-filter>
  5. </receiver>

(你不需要的android:enabled,exported等等,属性:Android的默认值是正确的)

MyBroadcastReceiver.java

  1. package com.example;
  2. public class MyBroadcastReceiver extends BroadcastReceiver {
  3. @Override
  4. public void onReceive(Context context, Intent intent) {
  5. Intent startServiceIntent = new Intent(context, MyService.class);
  6. context.startService(startServiceIntent);
  7. }
  8. }

从最初的问题:

  • 目前尚不清楚<receiver>元素是否在<application>元素中
  • 尚不清楚是否BroadcastReceiver为指定了正确的完全限定(或相对)的类名
  • 有一个错字 <intent-filter>

解决方法

当设备在android上启动时,我一直在尝试启动服务,但无法正常工作。我已经看了许多在线链接,但是这些代码都不起作用。我忘记了什么吗?

  1. AndroidManifest.xml
  2. <receiver
  3. android:name=".StartServiceAtBootReceiver"
  4. android:enabled="true"
  5. android:exported="false"
  6. android:label="StartServiceAtBootReceiver" >
  7. <intent-filter>
  8. <action android:name="android.intent.action._BOOT_COMPLETED" />
  9. </intent-filter>
  10. </receiver>
  11. <service
  12. android:name="com.test.RunService"
  13. android:enabled="true" />

广播接收器

  1. public void onReceive(Context context,Intent intent) {
  2. if ("android.intent.action.BOOT_COMPLETED".equals(intent.getAction())) {
  3. Intent serviceLauncher = new Intent(context,RunService.class);
  4. context.startService(serviceLauncher);
  5. Log.v("TEST","Service loaded at start");
  6. }
  7. }

猜你在找的技术问答相关文章

如何检查配对的蓝牙设备是打印机还是扫描仪(Android)
是否允许实体正文进行HTTP DELETE请求?
如何将ZipInputStream转换为InputStream?
java.util.logging Java 8中的变量
PowerMockito.doReturn返回null
Java中的RESTful调用
Swing / Java:如何正确使用getText和setText字符串
特殊字符和重音字符
Android Studio中的ndk.dir错误
错误“找不到主类”