集成适用于广告的 WebView API

适用于广告的 WebView API 可将应用信号提供给WebView中的代码,帮助提供内容的发布商提升创收效果,并保护广告客户免受垃圾内容的侵扰。这些应用信号(例如应用 ID 和应用版本)有助于启用报告定位应用内浏览器广告资源用例,而这些用例在其他情况下仅适用于应用流量。

运作方式

只有在响应以下任一事件触发的广告事件时,才会与 Google 移动广告 SDK 进行通信:

SDK 会向已注册的WebView 添加消息处理脚本,以监听这些广告事件。如需更好地了解其运作方式,请查看测试页面的源代码

前提条件

  • Google 移动广告 SDK 20.6.0 或更高版本。
  • Android API 级别 21 或更高级别。

  • 将以下 <meta-data> 标记添加到 AndroidManifest.xml 文件中,以绕过 APPLICATION_ID 检查。如果您不执行此步骤,并且未提供 <meta-data> 标记,Google 移动广告 SDK 会在应用启动时抛出 IllegalStateException

    <!-- Bypass APPLICATION_ID check for web view APIs for ads -->
     <meta-data
         android:name="com.google.android.gms.ads.INTEGRATION_MANAGER"
         android:value="webview"/>
    

注册 WebView

在主线程中调用 registerWebView() ,以便在每个 WebView 实例中与 AdSense 代码或 Google 发布商代码中的 JavaScript 处理程序建立连接。应尽早执行此操作,例如在视图控制器的 onCreate() 方法。

Kotlin

import android.webkit.CookieManager
import android.webkit.WebView
import com.google.android.gms.ads.MobileAds

class MainActivity : AppCompatActivity() {
  lateinit var webView: WebView

  override fun onCreate(savedInstanceState: Bundle?) {
    super.onCreate(savedInstanceState)
    setContentView(R.layout.activity_main)
    webView = findViewById(R.id.webview)

    // Let the web view accept third-party cookies.
    CookieManager.getInstance().setAcceptThirdPartyCookies(webView, true)
    // Let the web view use JavaScript.
    webView.settings.javaScriptEnabled = true
    // Let the web view access local storage.
    webView.settings.domStorageEnabled = true
    // Let HTML videos play automatically.
    webView.settings.mediaPlaybackRequiresUserGesture = false

    // Register the web view.
    MobileAds.registerWebView(webView)
  }
}

Java

import android.webkit.CookieManager;
import android.webkit.WebView;
import com.google.android.gms.ads.MobileAds;

public class MainActivity extends AppCompatActivity {
  private WebView webView;

  @Override
  protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    webView = findViewById(R.id.webview);

    // Let the web view accept third-party cookies.
    CookieManager.getInstance().setAcceptThirdPartyCookies(webView, true);
    // Let the web view use JavaScript.
    webView.getSettings().setJavaScriptEnabled(true);
    // Let the web view access local storage.
    webView.getSettings().setDomStorageEnabled(true);
    // Let HTML videos play automatically.
    webView.getSettings().setMediaPlaybackRequiresUserGesture(false);

    // Register the web view.
    MobileAds.registerWebView(webView);
  }
}

测试您的集成

在使用自己的网址之前,我们建议您加载以下网址来测试集成:

https://webview-api-for-ads-test.glitch.me#api-for-ads-tests

如果满足以下条件,测试网址会显示绿色状态栏,表示集成成功:

  • WebView 已连接到 Google 移动广告 SDK

后续步骤

  • WebView中征求用户意见。Google Ads 的 WebView API 不会将使用 IAB TCF v2.0IAB CCPA 合规框架在移动应用情境中收集的意见传播到网页视图中的代码。如果您希望作为WebView 及其用于创收的相应网站内容的所有者,实现单一意见征求流程,请与您的意见征求管理平台合作,在 WebView 情境中征求用户意见。