我只是想做一个非常简单的想法:
我想在全屏幕上放一个ImageView,底部只有一个简单的TextView,而不是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 ..
答案 0 :(得分:0)
尝试使用ImageView:
android:layout_weight="1"
在这种情况下,您不需要RelativeLayout。 或者将所有内容放到RelativeLayout并使用
android:layout_below="@+id/imgset"
用于TextView