1

我遇到了 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>
4

2 回答 2

1

您可以在父布局的底部对齐您的TextView,然后将您的放在ImageView 下方Gallery上方TextView。这样,它将填充布局中的其余空间:

<?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>

<TextView
    android:id="@+id/textView1"
    android:layout_alignParentBottom="true"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:gravity="center"
    android:text="goes here"
    android:textAppearance="?android:attr/textAppearanceLarge"
    android:textSize="15sp"
    android:textColor="#CCCCCC"
    android:typeface="serif"
    android:textAlignment="gravity" />

<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"
    android:layout_above="@+id/textView1" >
</ImageView>



</RelativeLayout>
于 2013-09-07T13:30:08.593 回答
1

尝试这个

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        tools:context=".ActivityHome"
        android:orientation="vertical"
        android:weightSum="1"
         >
    <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="0dp"
        android:layout_gravity="center"
        android:adjustViewBounds="true"
        android:paddingBottom="8dp"
        android:background="@drawable/ic_launcher"
        android:layout_weight="1"
        android:paddingTop="20dp"
        >
    </ImageView>

    <TextView
        android:id="@+id/textView1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
            android:gravity="center"
        android:text="Textgoeshere"
        android:textAppearance="?android:attr/textAppearanceLarge"
        android:textSize="15sp"
        android:textColor="#CCCCCC"
        android:typeface="serif"
        android:textAlignment="gravity"
        android:layout_gravity="bottom"
        />    
        </LinearLayout>
于 2013-09-07T13:30:55.967 回答