可收合橫幅廣告

可收合橫幅廣告是一開始會以較大重疊廣告顯示的橫幅廣告,並提供按鈕,可將廣告收合為原先要求的橫幅廣告大小。可收合的橫幅廣告旨在改善錨定廣告的成效,因為這類廣告的尺寸較小。本指南說明如何為現有的橫幅廣告刊登位置啟用可摺疊的橫幅廣告。

必要條件

實作

請確認橫幅檢視畫面已定義您希望使用者在一般 (收合) 橫幅狀態中看到的大小。在廣告請求中加入額外參數,並以 collapsible 做為鍵,並將廣告刊登位置設為廣告位置。

可收合刊登位置會定義展開區域如何錨定橫幅廣告。

Placement 行為 預定用途
top 展開廣告的頂端會與收合廣告的頂端對齊。 廣告會置於畫面頂端。
bottom 展開廣告底部會對齊收合廣告的底部。 廣告會置於畫面底部。

如果載入的廣告是可摺疊的橫幅,橫幅會在放入檢視階層後立即顯示可摺疊的疊加層。

void _loadAd() async {
  // Replace these test ad units with your own ad units.
  final String adUnitId = Platform.isAndroid
    ? 'ca-app-pub-3940256099942544/2014213617'
    : 'ca-app-pub-3940256099942544/8388050270';

  // Get the size before loading the ad.
  final size = await AdSize.getCurrentOrientationAnchoredAdaptiveBannerAdSize(
      MediaQuery.sizeOf(context).width.truncate());

  if (size == null) {
    // Unable to get the size.
    return;
  }

  // Create an extra parameter that aligns the bottom of the expanded ad to the
  // bottom of the banner ad.
  const adRequest = AdRequest(extras: {
    "collapsible": "bottom",
  });

  BannerAd(
      adUnitId: adUnitId,
      request: adRequest,
      size: size,
      listener: const BannerAdListener()
  ).load();
}

廣告重新整理行為

如果應用程式在 AdMob 網頁介面中為橫幅廣告設定自動重新整理功能,當系統為橫幅廣告版位要求可收合橫幅廣告時,後續重新整理廣告時不會再要求可收合橫幅廣告。這是因為每次重新整理時都顯示可收合橫幅廣告,可能會對使用者體驗造成負面影響。

如要在工作階段中的一段時間後,再載入其他可收合橫幅廣告,請在請求中包含可收合橫幅廣告參數,並手動載入廣告。

中介服務

在 Beta 版期間,可收合橫幅廣告僅適用於 Google 需求。透過中介服務放送的廣告會顯示為一般不可摺疊的橫幅廣告。