具有多个页面的Android Wear智能手表通知 - 小图标仅显示在第一页上?

时间:2014-11-20 20:41:01

标签: android notifications push-notification wear-os

所以我已经设置了一个2页的Android磨损通知(从设备发送):

final NotificationCompat.Builder mainNotificationBuilder = new NotificationCompat.Builder(this)
            .setDefaults(android.app.Notification.DEFAULT_ALL)
            .setSmallIcon(R.drawable.icon)
            .setStyle(bigStyle)
            .setContentIntent(contentIntent);
android.app.Notification secondNotification = new NotificationCompat.Builder(this)
            .setSmallIcon(R.drawable.icon)
            .setLargeIcon(balanceBackgroundImage)
            .setStyle(bigStyle2)
            .build();
android.app.Notification twoPageNotif = mainNotificationBuilder
            .extend(new NotificationCompat.WearableExtender()
                    .setContentIcon(R.drawable.icon)
                    .setBackground(backgroundImage)
                    .addPage(secondNotification)
            )
            .setSmallIcon(R.drawable.icon)
            .build();

但是,小图标仅出现在第一页上,但我希望它出现在两者上!

这甚至可能吗?我有一种感觉,它不是,并且图标只能出现在多页手表通知的第一页上,但我希望得到所有人的确认。

提前致谢:\

1 个答案:

答案 0 :(得分:2)

您的想法是正确的:小图标仅显示在通知的第一页上。