这是我的 XML 文件,
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:layout_width="match_parent"
android:layout_height="462dp"
android:background="#ffffff"
android:gravity="top"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
tools:context=".Quotes" >
<ImageButton
android:id="@+id/fprev"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/previous"
android:layout_toRightOf="@+id/previous"
android:background="@drawable/btn333"
android:contentDescription="@drawable/radnom"
android:src="@drawable/eback" />
<ImageButton
android:id="@+id/copy"
style="@style/ImageButtonpr2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/fprev"
android:layout_centerHorizontal="true"
android:background="@drawable/btn222"
android:contentDescription="@drawable/copy"
android:src="@drawable/copy" />
<RelativeLayout
android:id="@+id/relativeLayout2"
android:layout_width="match_parent"
android:layout_height="175dp"
android:layout_centerInParent="true"
android:background="@drawable/quotess" >
<TextView
android:id="@+id/quotes"
android:layout_width="300dp"
android:layout_height="215dp"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:alpha="1"
android:background="@android:color/transparent"
android:gravity="center_vertical|center_horizontal|top|bottom"
android:inAnimation="@android:anim/fade_in"
android:outAnimation="@android:anim/fade_out"
android:text="@string/h2"
android:textSize="12sp"
android:typeface="monospace" />
</RelativeLayout>
<ImageButton
android:id="@+id/previous"
style="@style/ImageButtonpr"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/relativeLayout2"
android:layout_below="@+id/relativeLayout2"
android:layout_marginTop="14dp"
android:contentDescription="@drawable/previous"
android:src="@drawable/previous" />
<ImageButton
android:id="@+id/fjprev"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignTop="@+id/copy"
android:layout_toRightOf="@+id/copy"
android:contentDescription="@drawable/btn4"
android:src="@drawable/eforward" />
<ImageButton
android:id="@+id/next"
style="@style/ImageButtonAppTheme"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@+id/relativeLayout2"
android:layout_alignTop="@+id/fjprev"
android:background="@drawable/btn4444"
android:contentDescription="@drawable/next"
android:src="@drawable/next" />
<EditText
android:id="@+id/nm"
android:layout_width="30dp"
android:layout_height="20dp"
android:layout_alignRight="@+id/next"
android:layout_below="@+id/next"
android:background="#cdcdcd"
android:ems="10"
android:inputType="number"
android:text="@string/h3"
android:textColor="#ffffff" />
<TextView
android:id="@+id/tView1"
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_above="@+id/relativeLayout2"
android:layout_centerHorizontal="true"
android:background="@drawable/highlight"
android:gravity="center|center_vertical"
android:text="@string/h1"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="@android:color/white" />
<com.google.ads.AdView
android:id="@+id/adView3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
ads:adSize="BANNER"
ads:adUnitId="****"
ads:loadAdOnCreate="true" >
</com.google.ads.AdView>
</RelativeLayout>
当我运行我的应用程序时,第一个问题是广告不显示在纵向中。当我切换到横向时,广告不会覆盖我应用屏幕的最顶部区域。可以做什么?我尝试使用 SMART_BANNER,但随后出现错误,两个方向都没有足够的空间。