【发布时间】:2013-04-02 10:02:33
【问题描述】:
这是 XML 代码:
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:id="@+id/relative_layout_main"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<com.adsdk.sdk.banner.AdView
android:id="@+id/ad_1"
android:layout_width="300dp"
android:background="#000000"
android:layout_height="50dp"
request_url="http://my.mobfox.com/request.php"
publisherId="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
android:layout_centerHorizontal="true"
android:gravity="center"
location="true"
animation="true" />
<TextView
android:textIsSelectable="true"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:textStyle="bold"
android:id="@+id/error_view_2"
android:layout_marginTop="20dp"
android:layout_below="@id/ad_1"
android:text="@string/gen_mess_err" />
<TextView
android:textIsSelectable="true"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:layout_below="@id/error_view_2"
android:id="@+id/error_view_1" />
<com.adsdk.sdk.banner.AdView
android:id="@+id/ad_2"
android:layout_width="300dp"
android:background="#000000"
android:layout_height="50dp"
request_url="http://my.mobfox.com/request.php"
publisherId="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
android:layout_centerHorizontal="true"
android:layout_marginTop="20dp"
android:layout_below="@id/error_view_1"
android:gravity="bottom"
location="true"
animation="true" />
</RelativeLayout>
我想要的是将广告设置在屏幕的顶部和底部,并将 textview 设置在屏幕的中心,但这不起作用。我该怎么办?
提前谢谢 :)
【问题讨论】:
标签: android layout center gravity