我试图向我的 android 应用程序添加服务,但该服务根本无法启动。我将它添加到我的 android 清单中,以便它在自己的进程中启动并创建一个广播接收器,它应该在 BOOT_COMPLETED 之后启动服务。
这是我清单的一部分
<service android:process=":attachServiceBackground"
android:name=".AttachService"
android:icon="@drawable/camera"
android:label="@string/attachServiceName" />
<receiver android:name="AttachmentStartupReceiver"
android:process=":attachServiceBackground">
<intent-filter >
<action android:name="android.intent.action.BOOT_COMPLETED"></action>
</intent-filter>
</receiver>
我的服务......刚刚添加了日志记录
public class AttachService extends Service {
private static final String TAG = AttachService.class.getSimpleName();
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() {
super.onCreate();
Log.d(TAG, "onCreate service");
}
@Override
public void onDestroy() {
super.onDestroy();
Log.d(TAG, "onDestroy");
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
Log.d(TAG, "onStartCommand");
return super.onStartCommand(intent, flags, startId);
}
}
还有我的广播接收器
public class AttachmentStartupReceiver extends BroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
Intent attachSvc = new Intent(context, AttachService.class);
context.startService(attachSvc);
}
}
我看不到该服务在启动设备后启动,日志中没有“oncreate 服务”,而且我查看了设置->应用程序->运行服务。有人知道我做错了什么吗?
谢谢