Android广告尺寸(智能横幅并非始终有效)
作者:互联网
我遇到了一个非常烦人的adMob问题及其横幅尺寸.
智能横幅的尺寸实在是一件好事,它几乎可以为您做任何事情,与调整广告大小有关,但几乎没有.
在google docs中有一个表格,列出了smartbanner支持的大小.
支持许多尺寸,但不支持普通android手机的横向尺寸.
https://developers.google.com/mobile-ads-sdk/android-legacy/docs/admob/smart-banners
那就是现在的样子:
人像-一切都很好
景观-不工作
那么,有什么方法可以正确显示横向广告吗?
(这是针对ads:adSize =“ SMART_BANNER”的,当我使用ads:adSize =“ BANNER”时,它会同时显示在两者上,但其固定为ads:adSize =“ BANNER”给您的尺寸,因此在更大的屏幕)
XML格式
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:ads="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingTop="@dimen/activity_vertical_margin"
android:background="@color/main_bg_color"
android:id="@+id/rel_bg_home">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:weightSum="1"
android:layout_centerInParent="true"
>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Test"
android:textSize="50sp"
android:id="@+id/uber"
android:shadowColor="#000000"
android:shadowRadius="5"
android:textStyle="bold"
android:textColor="@color/text_color"
android:layout_gravity="center_horizontal"
android:layout_weight="0.20"
android:gravity="center|bottom" />
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical"
android:layout_gravity="bottom|center_horizontal"
android:layout_weight="0.30"
android:gravity="bottom">
<Button
android:layout_width="90dp"
android:layout_height="wrap_content"
android:text="Play"
android:id="@+id/play"
android:textColor="@color/text_color"
android:layout_marginBottom="20dp" />
<Button
android:layout_width="90dp"
android:layout_height="wrap_content"
android:text="Help"
android:id="@+id/help"
android:textColor="@color/text_color"
android:layout_below="@+id/play"
android:layout_marginBottom="20dp" />
<Button
android:layout_width="90dp"
android:layout_height="wrap_content"
android:text="Score"
android:textColor="@color/text_color"
android:id="@+id/score" />
</LinearLayout>
</LinearLayout>
<ImageButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@drawable/ic_action_achievement"
android:layout_alignParentLeft="true"
android:layout_alignBottom="@+id/toggle"
android:layout_alignTop="@+id/toggle"
android:layout_marginLeft="@dimen/activity_horizontal_margin"
android:id="@+id/highscore"/>
<ToggleButton
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/toggle"
android:minHeight="10dp"
android:minWidth="10dp"
android:background="@drawable/check"
android:layout_alignParentRight="true"
android:focusable="false"
android:focusableInTouchMode="false"
android:textOn=""
android:textOff=""
android:layout_marginRight="@dimen/activity_horizontal_margin"
android:layout_above="@+id/adView" />
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="SMART_BANNER"
ads:adUnitId="@string/banner_ad_unit_id1">
</com.google.android.gms.ads.AdView>
</RelativeLayout>
解决方法:
尝试从xml文件的父视图中删除任何边距或填充属性.
希望这对您有所帮助.
标签:admob,ads,android,smartbanner 来源: https://codeday.me/bug/20191118/2030109.html