...
Code Block | ||
---|---|---|
| ||
final PopNotificationConfig popNotificationConfig = new PopNotificationConfig.Builder(contextgetApplicationContext()) .smallIconResId(R.drawable.your_small_icon) // 흰색 아이콘, Adaptive Icon 이 설정하지 않도록 주의 요망 .titleResId(R.string.your_pop_notification_title) .textResId(R.string.your_pop_notification_text) .colorResId(R.color.your_pop_notification_color) .notificationId(5000) // 기본값 .build(); PopConfig popConfig = new PopConfig.Builder(context, "YOUR_POP_UNIT_ID") .popNotificationConfig(popNotificationConfig) .build(); |
...