Змінюйте іконки та тексти push-повідомлень

Прикрасьте свої push-повідомлення і зробіть їх більш привабливими.
Написано Микола
Оновлено 1 рік тому

Ви можете налаштувати вигляд push-сповіщень, які надсилає HelpCrunch Android SDK, змінивши іконку і текст сповіщення.

Налаштуйте колір, іконки, текст і стиль сповіщень:

...або так:

Все це ви можете зробити за допомогою HCNotificationsTheme.Builder:

//Customize notification avatar
HCAvatarTheme avatarTheme = new HCAvatarTheme.Builder()
                .setPlaceholderBackgroundColor(R.color.hc_color_code_bg_outcoming_dark)
                .setPlaceholderTextColor(android.R.color.white)
                .build();

//Customize notification theme
HCNotificationsTheme notificationsTheme = new HCNotificationsTheme.Builder()
                .setAvatarTheme(avatarTheme)
                .setChannelTitleRes(R.string.app_name)
                .setChannelTitle("Lorem Support") //or use String value
                .setSmallIconRes(R.drawable.ic_favicon)
                .setMessagesCounterEnabled(false)
                .setColor(Color.parseColor("#4c82f8"))
                .build();

//Get Default theme template to change only notification's theme
HCTheme theme = new HCTheme.Builder(HCTheme.DEFAULT)
                .setNotificationsTheme(notificationsTheme)
                .build();

HCOptions options = new HCOptions.Builder()
                .setTheme(theme)
                .build();

HelpCrunch.initialize(
                this,
                ORGANISATION,
                APP_ID,
                SECRET,
                null,
                options
);
Чи була наша стаття корисною?