Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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

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

다음은 타이틀 및 색상 및 아이콘을 변경하는 예시입니다.

Code Block
languagejava
InterstitialAdConfig interstitialAdConfig = 
        new InterstitialAdConfig.Builder()
                .topIcon(R.drawable.

...

your_drawable)
                .titleText("지금 바로 참여하고 포인트 받기")
                .textColor(android.R.color.

...

your_color)
                .layoutBackgroundColor(R.color.

...

your_color)
                .build();

final InterstitialAdHandler interstitialAdHandler = new InterstitialAdHandlerFactory()
        .create("YOUR_INTERSTITIAL_UNIT_ID", InterstitialAdHandler.Type.Dialog);
interstitialAdHandler.show(context, interstitialAdConfig);