我的应用程序有很多布局,并且在所有这些布局中,广告工作得很好,除了小布局,我不知道可能是什么问题。 在每个布局文件夹中,我制作了布局文件和片段(针对每种屏幕尺寸)。 我在设备上运行应用程序(大屏幕和超大屏幕),它的工作原理。但是当我使用小屏幕设备时,它并没有。
布局XML文件:
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin"
tools:context=".java0"
tools:ignore="MergeRootFrame"
android:screenOrientation="portrait"
android:icon="@drawable/ic_launcher"
android:background="#ffff7e00">
<!---->
<fragment
android:layout_width="match_parent"
android:layout_height="match_parent"
android:name="nadsat.aplicacion.safrapp.lajerganadsat.java0$PlaceholderFragment"
tools:layout="@layout/fragment_ad"
android:id="@+id/fragment"
android:layout_alignBottom="@+id/adFragment" />
<fragment
android:name="nadsat.aplicacion.safrapp.lajerganadsat.java0$AdFragment"
android:id="@+id/adFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
tools:layout="@layout/fragment_ad"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
android:layout_alignParentStart="true" />
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/duda"
android:background="#ff000000"
android:textColor="#ffffffff"
android:id="@+id/bDuda"
android:textSize="35sp"
android:layout_above="@+id/bOtras"
android:layout_centerHorizontal="true"
android:layout_marginBottom="10dp"
android:clickable="true" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="24sp"
android:textColor="#ff000000"
android:background="#ffffffff"
android:textStyle="bold"
android:clickable="true"
android:text="Otras aplicaciones"
android:id="@+id/bOtras"
android:layout_above="@+id/bLista"
android:layout_alignLeft="@+id/bLista"
android:layout_alignStart="@+id/bLista"
android:layout_marginBottom="10dp" />
<Button
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:textSize="24sp"
android:textColor="#ff000000"
android:background="#ffffffff"
android:textStyle="bold"
android:clickable="true"
android:text="@string/bLista"
android:id="@+id/bLista"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true" />
</RelativeLayout>
片段XML文件:
<?xml version="1.0" encoding="utf-8"?>
<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">
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
ads:adSize="BANNER"
ads:adUnitId="@string/banner_ad_unit_id">
</com.google.android.gms.ads.AdView>
</RelativeLayout>
(每种屏幕尺寸的片段和布局代码都相同。)
答案 0 :(得分:0)
几乎可以肯定,因为您在外部布局文件中为RelativeLayout设置了左/右填充。
看看你的logcat。它会告诉您它是否无法展示广告,因为它没有足够的尺寸。