This commit is contained in:
Horis 2024-05-27 15:56:32 +08:00
parent 17d187b4af
commit d774b2df7c

View File

@ -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
}
/**