From 61e48aba8adbb1931f74d3272c7f96f6faa4048d Mon Sep 17 00:00:00 2001 From: tick <895866818@qq.com> Date: Tue, 20 Aug 2024 20:18:33 +0800 Subject: [PATCH] =?UTF-8?q?feature#=20=E8=B0=83=E6=95=B4=E6=8C=89=E9=92=AE?= =?UTF-8?q?=E9=A1=BA=E5=BA=8F:=E4=B8=8A=E4=B8=80=E7=AB=A0,=E6=92=AD?= =?UTF-8?q?=E6=94=BE,=E5=81=9C=E6=AD=A2,=E4=B8=8B=E4=B8=80=E7=AB=A0,?= =?UTF-8?q?=E5=AE=9A=E6=97=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../io/legado/app/service/BaseReadAloudService.kt | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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 8ff3f94ba..2446a6579 100644 --- a/app/src/main/java/io/legado/app/service/BaseReadAloudService.kt +++ b/app/src/main/java/io/legado/app/service/BaseReadAloudService.kt @@ -487,7 +487,7 @@ abstract class BaseReadAloudService : BaseService(), private fun choiceMediaStyle(): androidx.media.app.NotificationCompat.MediaStyle { val mediaStyle = androidx.media.app.NotificationCompat.MediaStyle() - .setShowActionsInCompactView(0, 2, 4); + .setShowActionsInCompactView(1, 2, 4); if (isVivoDevice) { //fix #4090 android 14 can not show play control in lock screen mediaStyle.setMediaSession(mediaSessionCompat.sessionToken) @@ -528,11 +528,6 @@ abstract class BaseReadAloudService : BaseService(), .setLights(0, 0, 0) builder.setLargeIcon(cover) // 按钮定义 : 停止, 上一章, 播放, 下一章, 定时 - builder.addAction( - R.drawable.ic_stop_black_24dp, - getString(R.string.stop), - aloudServicePendingIntent(IntentAction.stop) - ) builder.addAction( R.drawable.ic_skip_previous, getString(R.string.previous_chapter), @@ -551,6 +546,11 @@ abstract class BaseReadAloudService : BaseService(), aloudServicePendingIntent(IntentAction.pause) ) } + builder.addAction( + R.drawable.ic_stop_black_24dp, + getString(R.string.stop), + aloudServicePendingIntent(IntentAction.stop) + ) builder.addAction( R.drawable.ic_skip_next, getString(R.string.next_chapter),