当前位置: 首页 > 知识库问答 >
问题:

奥利奥,前台服务关闭时停止

包谭三
2023-03-14

我正在使用服务作为前台之一。在android pre O版本上,一切都很好。但在Android奥利奥当我关闭app时,前台服务也关闭了……

val i = Intent(activity, MyService::class.java)
ContextCompat.startForegroundService(activity, i)
        val builder = NotificationCompat.Builder(context, MY_CHANEL_ID)
                .setSmallIcon(R.mipmap.ic_launcher)
                .setContentTitle(title)
                .setContentText(message)
                .setContentIntent(resultPendingIntent)

        val notification = builder.build()

        startForeground(notificationId, notification)
        <service
            android:name=".data.service.MyService"
            android:exported="true"
            android:enabled="true"
            />

你知道为什么它与应用程序关闭以及如何防止它吗?

谢了!

共有1个答案

贲宏硕
2023-03-14

使用JobintentService而不是Service

https://developer.android.com/reference/android/support/v4/app/jobintentservice.html

 类似资料:
  • 我在和前台服务作斗争。在我的设备(Redmi 5 Plus,Android 8.1.0)上,当应用程序从最近的应用程序中删除时,服务通知将不再可见。在其他设备(Android5.0.1、Android7.0)和模拟器(Android8.1-API27)上,当应用程序从最近的应用程序中删除时,通知仍然可见。 在main activity中,我使用启动服务。 这是我的舱单文件: 我错过了什么?它是与后

  • [https://developer.android.com/about/versions/oreo/background.html]-真的没有办法为我的用例(但最好是为所有用例)提供永久的后台服务吗?

  • 我已经试过了 > 在应用程序中创建自定义通知通道。 在Oreo设备上使用启动服务。

  • Ths是我的服务班 }

  • 我正在使用后台服务,以获得用户的位置和上传到服务器。 我使用了一个扩展Service类的LocationTrack类和扩展BroadcastReciver的AlramReciver。 我已经在manifest中添加了所有权限,并在manifest文件中注册了AlarmReciver和LocationTracker类。 Oreo-在前台启动服务 https://developer.android.c