Как создать стиль уведомления Android, как WhatsApp или Telegream с использованием natification.setStyleJAVA

Программисты JAVA общаются здесь
Anonymous
Как создать стиль уведомления Android, как WhatsApp или Telegream с использованием natification.setStyle

Сообщение Anonymous »

Как создать уведомление 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

Вернуться в «JAVA»