我只想做一个非常简单的想法:
我想在他的底部只放一个简单的 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 ..