Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 7 Current »

Push 구독 다이얼로그 UI 커스터마이

BuzzAd Android SDK에서 제공하는 구독 다이얼로그 UI의 아이콘 및 색상을 변경할 수 있습니다.

  • buzzvilRewardIcon은 테마를 설정하여 변경할 수 있습니다.

  • 이외의 UI 변경은 PushDialogConfig를 수정하여 변경할 수 있습니다.

    final PushDialogConfig pushDialogConfig = new PushDialogConfig.Builder()
                    .colorConfirm(R.color.colorAccent)
                    .colorCancel(R.color.colorPrimary)
                    .imageRegisterLogo(R.drawable.benefit_push_dialog_image_logo)
                    .imageUnregisterLogo(R.drawable.benefit_push_dialog_image_logo)
                    .build();

Push Notification 아이콘 변경

Push Notification의 아이콘을 변경할 수 있습니다.(Push Service Notification의 아이콘에는 적용되지 않습니다.)

다음은 Push Notification의 아이콘을 변경하는 예시입니다.

public class CustomNotificationWorker extends NotificationWorker {
    @Override
    @NonNull
    public NotificationConfig getNotificationConfig() {
        return new NotificationConfig.Builder()
            .iconResourceId(...)
            .build();
    }
}

  • No labels