diff --git a/app/src/main/java/io/legado/app/service/BaseReadAloudService.kt b/app/src/main/java/io/legado/app/service/BaseReadAloudService.kt index ffd15c7b6..04b5b5a06 100644 --- a/app/src/main/java/io/legado/app/service/BaseReadAloudService.kt +++ b/app/src/main/java/io/legado/app/service/BaseReadAloudService.kt @@ -496,6 +496,8 @@ abstract class BaseReadAloudService : BaseService(), nSubtitle = getString(R.string.read_aloud_s) val builder = NotificationCompat .Builder(this@BaseReadAloudService, AppConst.channelIdReadAloud) + .setVisibility(NotificationCompat.VISIBILITY_PUBLIC) + .setForegroundServiceBehavior(NotificationCompat.FOREGROUND_SERVICE_IMMEDIATE) .setSmallIcon(R.drawable.ic_volume_up) .setSubText(getString(R.string.read_aloud)) .setOngoing(true) @@ -535,7 +537,7 @@ abstract class BaseReadAloudService : BaseService(), androidx.media.app.NotificationCompat.MediaStyle() .setShowActionsInCompactView(0, 1, 2) ) - return builder.setVisibility(NotificationCompat.VISIBILITY_PUBLIC) + return builder } /**