0

我只想做一个非常简单的想法:

我想在他的底部只放一个简单的 TextView 将 ImageView 放在全屏上,而不是 Over 而只是在他的底部..

我尝试了一些组合,但没有任何效果..

这是我当前的基本 XML 代码:

    <?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content">
    <ImageView
        android:id="@+id/imgset"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:background="@color/white"
        android:src="@drawable/creditview" />

    <RelativeLayout
    android:id="@+id/layoutimgset"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content">

    <TextView android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="This spot is for Ad"
        android:textStyle="bold"
        android:textColor="@color/black"
        android:background="@color/white" />

    </RelativeLayout>
</LinearLayout>

这仅显示 ImageView ..

4

1 回答 1

0

尝试将其用于您的 ImageView:

android:layout_weight="1" 

在这种情况下,您不需要RelativeLayout。或者将所有内容放到RelativeLayout中并使用

android:layout_below="@+id/imgset"

为您的 TextView

于 2013-09-02T11:09:43.770 回答