목차
Table of Contents | ||||||
---|---|---|---|---|---|---|
|
개요
여기에서는 BuzzAd Android용 SDK의 Pop 지면에서 구현하는 기능을 설명하고 각 기능을 변경하는 방법을 설명합니다.
...
PopConfig 설정하기
PopConfig
를 사용해 기존 Feed 지면과 별개의 Unit ID로 Pop 지면을 관리하거나 FeedConfig
을 통해 설정된 기능 외에 다른 기능을 설정할 수 있습니다.
다음은 PopConfig
를 BuzzAdBenefitConfig
에 추가하는 예시입니다.
...
Info |
---|
|
Pop 표시 시간 변경하기
Pop 버튼이 뜬 후 사라지기 전까지 노출되는 시간을 수정할 수 있습니다. 초기 설정 값은 5초입니다.
Code Block | ||
---|---|---|
| ||
PopConfig popConfig = new PopConfig.Builder(feedConfig) .idleTimeInMillis(5000) //Pop 표시 시간 .build(); |
Pop 표시 위치 변경하기
사용자가 기기의 화면을 잠금해제할 때마다 Pop이 표시되는 위치를 설정할 수 있습니다. 초기 설정 값은 SidePosition.Side.RIGHT, 0.6f
(사용자 기기 화면 우측에서 상단 기준으로 60% 높이)입니다.
Code Block | ||
---|---|---|
| ||
PopConfig popConfig = new PopConfig.Builder(feedConfig) .initialSidePosition(SidePosition(SidePosition.Side.RIGHT, 0.6f)) // Pop 표시 위치 .build(); |
Pop 포그라운드 서비스 알림 자체 구현하기
PopConfig
를 사용해 Pop 포그라운드 서비스 알림을 직접 구현해 알림의 동작, UI 레이아웃까지 변경할 수 있습니다.
...
PopControlService
의 상속 클래스를 구현하세요.notificationChannel
을 생성하거나 View를 등록할 수 있습니다.getPopPendingIntent(unitId, context)
으로 Pop 지면으로 진입하는PendingIntent
를 이용할 수 있습니다.
다음은PopControlService
의 상속 클래스를 구현하는 예시입니다.Code Block language java public class YourControlService extends PopControlService { @Override protected Notification buildForegroundNotification(@NonNull String unitId, @NonNull PopNotificationConfig popNotificationConfig) { // Pop을 표시하는 PendingIntent (원형 아이콘) PendingIntent popPendingIntent = getPopPendingIntent(unitId, this); // 필요에 따라 notificationChannel을 등록합니다. NotificationCompat.Builder builder; if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) { createNotificationChannelIfNeeded(); builder = new NotificationCompat.Builder(this, NOTIFICATION_CHANNEL_ID); } else { builder = new NotificationCompat.Builder(this); } // Pop Service Notification 에 사용할 View 를 등록합니다. RemoteViews remoteView = new RemoteViews(getPackageName(), R.layout.view_custom_notification); builder.setSmallIcon(popNotificationConfig.getSmallIconResId()) .setContent(remoteView) .setContentIntent(popPendingIntent) .setPriority(PRIORITY_LOW) .setShowWhen(false); if (popNotificationConfig.getColor() != null) { builder.setColor(popNotificationConfig.getColor()); } return builder.build(); } @TargetApi(Build.VERSION_CODES.O) protected void createNotificationChannelIfNeeded() { final NotificationManager notificationManager = (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); if (notificationManager.getNotificationChannel(NOTIFICATION_CHANNEL_ID) == null) { final NotificationChannel channel = new NotificationChannel(NOTIFICATION_CHANNEL_ID, NOTIFICATION_CHANNEL_NAME, NotificationManager.IMPORTANCE_LOW); channel.setShowBadge(false); notificationManager.createNotificationChannel(channel); } } }
notificationId
는PopNotificationConfig
에서 설정하세요. 다음의 예시를 참고하세요.Code Block language java final PopNotificationConfig popNotificationConfig = new PopNotificationConfig.Builder(getApplicationContext()) .notificationId(NOTIFICATION_ID) .build(); final FeedConfig popFeedConfig = new FeedConfig.Builder("YOUR_POP_UNIT_ID").build(); final PopConfig popConfig = new PopConfig.Builder(popFeedConfig) .popNotificationConfig(popNotificationConfig) .controlService(YourControlService.class) .build(); final BuzzAdBenefitConfig buzzAdBenefitConfig = new BuzzAdBenefitConfig.Builder(context) .setPopConfig(popConfig) .build();
구현한 상속 클래스를 AndroidManifest.xml 파일에 등록하세요.
Code Block language java // AndroidManifest.xml <application ...생략... <service android:name=".YourControlService" /> ...생략... </application>
Pop 활성화 버튼 숨기기
Pop 지면을 추가하면 기존에 연동한 Feed에 Pop 활성화 버튼이 자동으로 표시됩니다. Pop을 활성화하지 않은 사용자는 이 버튼을 통해 자연스럽게 Pop을 활성화할 수 있으며, Pop을 한 번 활성화하면 버튼은 Feed 지면에서 사라집니다.
...
Code Block | ||
---|---|---|
| ||
final FeedConfig feedConfig = new FeedConfig.Builder("YOUR_POP_UNIT_ID") .optInAndShowPopButtonHandlerClass(null) // Pop 활성화 버튼 숨김 .build(); |
툴바 자체 구현하기
Pop 지면 내 툴바의 디자인을 변경할 수 있습니다. 툴바 영역의 UI를 변경하는 방법은 2가지입니다. 아래 2가지 방법 중 하나를 선택하여 연동하세요.
...
SDK 기본 UI 사용하기
BuzzAd Android용 SDK에서 제공하는 기본 UI를 수정하여 Pop 지면 툴바의 디자인을 변경할 수 있습니다.
...
Code Block | ||
---|---|---|
| ||
final FeedConfig popFeedConfig = new FeedConfig.Builder("YOUR_POP_UNIT_ID") ...생략... .feedToolbarHolderClass(YourPopToolbarHolder.class) .build(); new PopConfig.Builder(popFeedConfig) ...생략... .build(); |
직접 구현한 Custom View 사용하기
BuzzAd Android용 SDK에서 제공하는 UI를 사용하지 않고 직접 Custom View를 구현하여 Pop지면의 툴바를 변경할 수 있습니다.
...
Code Block | ||
---|---|---|
| ||
final FeedConfig popFeedConfig = new FeedConfig.Builder("YOUR_POP_UNIT_ID") ...생략... .feedToolbarHolderClass(YourPopToolbarHolder.class) .build(); new PopConfig.Builder(popFeedConfig) ...생략... .build(); |
Pop 유틸리티 영역 변경하기
Pop 지면 우측 하단의 유틸리티 영역에는 앱 메뉴 실행, 다른 페이지로 이동 등 원하는 기능을 추가할 수 있습니다.
...
Code Block | ||
---|---|---|
| ||
new PopConfig.Builder(popFeedConfig) .popUtilityLayoutHandlerClass(CustomPopUtilityLayoutHandler.class) .build(); |
유틸리티 영역 아이콘 이미지 규격
유틸리티 영역에 추가하는 기능의 아이콘의 이미지 규격은 아래의 표를 참고하세요.
항목 | 규격 |
---|---|
이미지 유형 | 픽셀 또는 벡터 이미지 |
사이즈 |
|
색상 | 흑백 또는 채색 |
커스텀 페이지 추가하기
Pop 지면에 직접 내용을 구성하는 커스텀 페이지를 추가할 수 있습니다. 커스텀 페이지는 툴바와 콘텐츠로 구성됩니다. 툴바에는 타이틀을 설정할 수 있으며, 콘텐츠 영역에는 원하는 프래그먼트를 설정할 수 있습니다.
...