디자인 커스터마이징
여기에서는 BuzzAd Android용 SDK에서 제공하는 UI의 디자인을 변경하기 위한 방법을 안내합니다.
인터스티셜 지면에서는 광고 제목과 설명 문구의 색상(textColor
), CTA 버튼 디자인(CTA), 지면의 배경 색상(backgroundColor
)을 변경할 수 있습니다.
텍스트 색상 변경하기
인터스티셜 지면의 광고 타이틀과 설명 문구의 색상을 변경하려면 아래의 순서에 따라 구현하세요.
- 인터스티셜 광고의 디자인을 커스터마이징할 수 있는
BuzzAdInterstitialTheme
객체를 생성하세요. BuzzAdInterstitialTheme.textColor()
에 광고 타이틀과 설명 문구의 색상을 설정하세요.- 위에서 생성한
BuzzAdInterstitialTheme
객체를BuzzAdInterstitial.theme()
에 설정하세요.
BuzzAdInterstitialTheme theme = BuzzAdInterstitialTheme.getDefault()
.textColor(R.color.YOUR_TEXT_COLOR); // 광고 타이틀과 설명 문구 색상
final BuzzAdInterstitial buzzAdInterstitial =
new BuzzAdInterstitial.Builder("YOUR_INTERSTITIAL_UNIT_ID")
.theme(theme) // 위에서 생성한 Theme 객체를 전달
.buildDialog();
배경 색상 변경하기
인터스티셜 지면의 배경 색상을 변경하려면 아래의 순서에 따라 구현하세요.
- 인터스티셜 광고의 디자인을 커스터마이징할 수 있는
BuzzAdInterstitialTheme
객체를 생성하세요. BuzzAdInterstitialTheme.backgroundColor()
에 지면의 배경 색상을 설정하세요.- 위에서 생성한
BuzzAdInterstitialTheme
객체를BuzzAdInterstitial.theme()
에 설정하세요.
BuzzAdInterstitialTheme theme = BuzzAdInterstitialTheme.getDefault()
.backgroundColor(R.color.YOUR_BACKGROUND_COLOR); // 지면 배경 색상
final BuzzAdInterstitial buzzAdInterstitial =
new BuzzAdInterstitial.Builder("YOUR_INTERSTITIAL_UNIT_ID")
.theme(theme) // 위에서 생성한 Theme 객체를 전달
.buildDialog();
CTA 버튼 디자인 변경하기
CTA 버튼의 디자인을 변경하려면 CTA 버튼 커스터마이징하기 토픽을 참고하세요.