Как создать уведомление Android, стилизованное как WhatsApp или Telegream CHAT, с использованием natification.setStyle (natification.messagingstyle) или любого другого без использования remoteviews
= Build.VERSION_CODES.S) {
Person.Builder personBuilder = new Person.Builder();
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.angry_bird);
Icon icon = Icon.createWithBitmap(bitmap);
personBuilder.setIcon(icon);
personBuilder.setName("It's Me");
personBuilder.setImportant(true);
Person person = personBuilder.build();
Notification.CallStyle style = Notification.CallStyle.forOngoingCall(person,pendingIntent);
notificationBuilder.setStyle(style);
notificationBuilder.setContentText("Hello");
}
Подробнее здесь: https://stackoverflow.com/questions/769 ... sing-notif
Мобильная версия