(ver 2.23.x) 5.3. 디자인 커스터마이징
Interstitial UI 커스터마이징
InterstitialAdConfig 설정
topIcon
: Interstitial 광고 상단에 있는 아이콘 (drawable의 id로 지정하거나 drawable type으로 지정 가능)titleText
: Interstitial 광고 상단에 있는 TexttextColor
: titleText의 색상layoutBackgroundColor
: Interstitial 광고 전체의 배경 색깔Cta 버튼 UI는 테마 적용으로 변경할 수 있습니다.
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);