我想在RecyclerView
中加载AdMob广告。我想要完成的是让广告与RecyclerView
中的其他项目具有相同的宽度,同时保持正确的宽高比。
在AdMob documentation中,我找到了以下AdSize FLUID应该做的解释:
动态大小的横幅,与其父广告的宽度相匹配,并在加载完成后展开/收缩其高度以匹配广告的内容。
ViewHolder xml:
<android.support.constraint.ConstraintLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/admob_viewholder"
android:layout_height="wrap_content"
android:layout_width="match_parent"
android:layout_marginBottom="@dimen/card_margin_bottom"
android:layout_marginStart="@dimen/card_margin_left"
android:layout_marginEnd="@dimen/card_margin_right">
<FrameLayout
android:id="@+id/ad_wrapper"
android:layout_width="0dp"
android:layout_height="0dp"
app:layout_constraintDimensionRatio="300:250"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent">
<com.google.android.gms.ads.AdView
android:id="@+id/ad_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#0f0"
app:adSize="FLUID"
app:adUnitId="ca-app-pub-3940256099942544/6300978111" />
</FrameLayout>
</android.support.constraint.ConstraintLayout>
结果:
由于300:250的宽高比,我期待获得MEDIUM_RECTANGLE。为什么我没有得到MEDIUM_RECTANGLE?为什么横幅不至少与父母的宽度相符,就像在文档中说的一样?
编辑:我知道基于屏幕宽度的SMART_BANNER,但我询问FLUID尺寸,因为它的文档说明它是基于父母的大小&#39我认为这是我正在寻找的。 p>
答案 0 :(得分:0)
替换您的广告代码
<com.google.android.gms.ads.AdView
android:id="@+id/ad_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#0f0"
app:adSize="SMART_BANNER"
app:adUnitId="ca-app-pub-3940256099942544/6300978111" />
答案 1 :(得分:0)
您正在使用app:adSize="FLUID"
将其替换为app:adSize="SMART_BANNER"
<com.google.android.gms.ads.AdView
android:id="@+id/ad_view"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#0f0"
app:adSize="SMART_BANNER"
app:adUnitId="ca-app-pub-3940256099942544/6300978111" />
为不同的adSize引用它: - https://developers.google.com/admob/android/banner