Versions Compared

Key

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

...

Code Block
languagejava
final FeedConfig popFeedConfig = new FeedConfig.Builder("YOUR_POP_UNIT_ID").build();
final PopConfig popConfig = new PopConfig.Builder(popFeedConfig)
                      .build();
        
final BuzzAdBenefitConfig buzzAdBenefitConfig = new BuzzAdBenefitConfig.Builder(context)
        ...생략...
        .setPopConfig(popConfig)
        .build();
        
BuzzAdBenefit.init(this, buzzAdBenefitConfig);

...

PopConfig를 사용해 Pop 포그라운드 서비스 알림을 직접 구현해 알림의 동작, 동작과 UI 레이아웃까지 레이아웃을 변경할 수 있습니다.

Pop을 사용하면 Pop의 포그라운드 서비스 알림이 활성화되며 PopConfig를 사용해 직접 구현하지 않으면 사용자 모바일 기기 상단의 알림 창에는 BuzzAd Android용 SDK에서 기본으로 제공하는 포그라운드 서비스 알림이 표시됩니다.

...

  1. PopControlService의 상속 클래스를 구현하세요.

    • notificationChannel을 생성하거나 View를 등록할 수 있습니다.

    • getPopPendingIntent(unitId, context)으로 Pop 지면으로 진입하는 PendingIntent를 이용할 수 있습니다.
      다음은 PopControlService의 상속 클래스를 구현하는 예시입니다.

      Code Block
      languagejava
      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);
              }
          }
      }

    • notificationIdPopNotificationConfig에서 객체에 설정하세요. 다음의 예시를 참고하세요.

      Code Block
      languagejava
      final PopNotificationConfig popNotificationConfig = new PopNotificationConfig.Builder(getApplicationContext(context))
                      .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();

  2. 구현한 상속 클래스를 AndroidManifest.xml 파일에 service등록하세요.

    Code Block
    languagexml
    //<!-- AndroidManifest.xml -->
    
    <application
        ...생략...
        
        <service android:name=".YourControlService" />
        
        ...생략...
    </application> 

Pop 활성화 버튼 숨기기

...