3つのアクションが表示されます。アンドロイドMediaStyle]によってNotificationCompatは、私がMediaStyle]によってとして設定私のNotificationCompat.Builderと2つの問題を抱えていた最大
1)私は5つのアクションを設定し、唯一の3が拡大し、通知に表示されます。 (最初の3つの表示されたアクションは正常に動作しています)。私は1つのアクションを設定するのに
2)なしアクションをコンパクト通知に表示されます。
私はロリポップ5.1.1でサムスンS4(シアン)でテストだし、私のアプリは以下23.2.1
私NotificationCompat.Builderあるサポートライブラリを使用しています。
notificationBuilder = new NotificationCompat.Builder(act)
.setPriority(NotificationCompat.PRIORITY_HIGH)
.setVisibility(NotificationCompat.VISIBILITY_PUBLIC)
.setCategory(NotificationCompat.CATEGORY_TRANSPORT)
.setContentTitle(podcastName)
.setContentText(episodeName)
.setOngoing(true)
.setShowWhen(true)
.setContentIntent(activityMainPI)
.setSmallIcon(smallIcon)
.setLargeIcon(largeIcon)
.setAutoCancel(false)
.addAction(previousAction)
.addAction(playAction)
.addAction(nextAction)
.addAction(rewindAction)
.addAction(forwardAction)
.setStyle(new MediaStyle()
.setShowActionsInCompactView(new int[]{1})
);
すべてのアクションを投稿してください。 –