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 4 Next »

Interstitial 지면 UI 커스터마이징

Interstitial 지면 UI는 2가지를 설정할 수 있습니다.

  • Cta 버튼 UI는 테마 적용으로 변경할 수 있습니다.

  • 타이틀 및 배경색은 InterstitialAdConfig을 설정하여 변경할 수 있습니다.

    InterstitialAdConfig interstitialAdConfig = 
            new InterstitialAdConfig.Builder()
                    .topIcon(R.drawable.bz_ic_checked_circle)
                    .titleText("지금 바로 참여하고 포인트 받기")
                    .textColor(android.R.color.white)
                    .layoutBackgroundColor(R.color.colorPrimaryDark)
                    .build();
    
    final InterstitialAdHandler interstitialAdHandler = new InterstitialAdHandlerFactory()
            .create("YOUR_INTERSTITIAL_UNIT_ID", InterstitialAdHandler.Type.Dialog);
    interstitialAdHandler.show(context, interstitialAdConfig);
  • No labels