我正在开发一款应用,该应用目前使用PublisherAdView
该应用还可以显示NativeAppInstallAd
,我可以使用它。
我的客户通过在DFP广告管理系统中进行设置来处理相应应用的展示。通过这种方式,他可以确定需要展示哪些广告,这适用于横幅广告。
但是他希望能够在同一位置显示NativeAppInstallAd
和Banners
,并处理从DFP广告管理系统管理的哪个位置。
我无法找到任何相关信息。这有可能吗?有人能指出我正确的方向吗?如有必要,我愿意为此写一些自定义内容。
答案 0 :(得分:0)
我发现使用<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="fill_parent"
android:layout_gravity="center"
android:layout_height="fill_parent" >
<VideoView
android:id="@+id/videoView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center|center_vertical" />
</FrameLayout>
实际上可以实现这一点。
https://developers.google.com/android/reference/com/google/android/gms/ads/AdLoader.Builder#forPublisherAdView(com.google.android.gms.ads.formats.OnPublisherAdViewLoadedListener,com.google.android.gms.ads.AdSize ...)