0

我有这样的布局:

<ScrollView
    android:id="@+id/ScrollViewHome"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#ffffff"
    android:fillViewport="true" >

    <LinearLayout
        android:id="@+id/contentOuter"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical|center_horizontal" >           

        <Gallery
            android:id="@+id/home_banner"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:paddingBottom="10dip" >
        </Gallery>            
    </LinearLayout>
</ScrollView>

它会在屏幕中间显示我的画廊。由于图像的高度不适合整个屏幕,因此画廊上方和下方有一个空白区域。没关系。然后我想在Gallery下面添加2个TextView:

<ScrollView
    android:id="@+id/ScrollViewHome"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:background="#ffffff"
    android:fillViewport="true" >

    <LinearLayout
        android:id="@+id/contentOuter"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:gravity="center_vertical|center_horizontal" >           

        <Gallery
            android:id="@+id/home_banner"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:paddingBottom="10dip" >
        </Gallery>            

        <RelativeLayout
            android:id="@+id/topHot"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"                
            android:orientation="vertical" >

            <TextView
                android:id="@+id/topHotText"
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentLeft="true"
                android:layout_centerVertical="true"
                android:text="@string/home_segment_home1"
                android:textColor="#8e8e8e"
                android:textSize="30dp"
                android:textStyle="bold" />

            <TextView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:layout_alignParentRight="true"
                android:layout_centerVertical="true"
                android:text="@string/watch_all"
                android:textColor="#8e8e8e"
                android:textSize="30dp"
                android:textStyle="bold" />
        </RelativeLayout>
    </LinearLayout>
</ScrollView>

添加 后<RelativeLayout>,Gallery 上下的空白区域变大。并且里面的2个TextView<RelativeLayout>没有显示。屏幕上仍然只有画廊。为什么?我写错了什么?这个你能帮我吗。

4

2 回答 2

1

将方向垂直应用于滚动视图中的线性布局。这可能是一个原因。

于 2012-07-13T04:28:47.653 回答
1

将您的线性布局更改为垂直

 <LinearLayout
    android:id="@+id/contentOuter"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:gravity="center_vertical|center_horizontal" android:orientation="vertical">  
于 2012-07-13T04:38:01.213 回答