カスタム通知は、ピーク時にタイトル (タイトルがない場合はコンテンツ テキスト) のみを表示します。ルート通知にアイコンを設定しようとしても効果がありません。エクステンダー通知にアイコンを設定すると表示されますが、ピーク通知が非常に小さいため (明らかに、その高さはワンライナーのタイトル/説明の高さに合わせられます)、アイコンが収まりません。たとえば、電子メール通知と比較して、ピーク通知の高さははるかに小さくなっています。
実行しようとしているコードの概要は次のとおりです。
Intent notificationIntent = new Intent(this, CustomNotification.class);
PendingIntent notificationPendingIntent = PendingIntent.getActivity(this, 0,
notificationIntent,
PendingIntent.FLAG_UPDATE_CURRENT);
Notification notification = new Notification.Builder(this)
.setContentTitle("Test")
.setSmallIcon(R.mipmap.ic_launcher)
.extend(new Notification.WearableExtender()
.setDisplayIntent(notificationPendingIntent)
.setCustomSizePreset(Notification.WearableExtender.SIZE_FULL_SCREEN)
)
.build();