我遇到了 ImageView 和 TextView 的问题。我有一个问题,当我将 ImageView 的布局宽度和高度设置为“fill_parent”时,我想在它下面显示的 TextView 被推离屏幕。
我必须让 ImageView 来填充屏幕的其余部分,这就是我使用“fill_parent”作为高度和宽度的原因。我已经尝试将“fill_parent”仅用于宽度,“wrap_content”用于高度,但随后整个图像的大小会被调整(更小),就好像我对两者都使用“wrap_content”一样。
这是我的 XML:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background_x_high"
android:orientation="vertical" >
<Gallery
android:id="@+id/Gallery01"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</Gallery>
<ImageView
android:id="@+id/ImageView01"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_gravity="center"
android:adjustViewBounds="true"
android:paddingBottom="8dp"
android:paddingTop="20dp"
android:layout_below="@+id/Gallery01" >
</ImageView>
<TextView
android:id="@+id/textView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="@string/Textgoeshere"
android:textAppearance="?android:attr/textAppearanceLarge"
android:textSize="15sp"
android:textColor="#CCCCCC"
android:typeface="serif"
android:textAlignment="gravity"
android:layout_below="@+id/ImageView01" />
</RelativeLayout>