0

我的想法有点难以置信......在下面的 XML 中,我希望我的 LinearLayout/TextView 与我的 ScrollView 大小相同。正如您从我包含的图片中看到的那样,情况并非如此。

这里发生了什么?为什么我的 LinearLayout 与 ScrollView 的大小不同?

<ScrollView
    android:id="@+id/scrollView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#008B8B" >

    <LinearLayout
        android:id="@+id/contentLayout"
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:background="#DC143C" >

        <TextView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:text="hello" />
    </LinearLayout>

</ScrollView>

在此处输入图像描述

4

1 回答 1

1

采用

android:fillViewport="true"

在你的ScrollView

于 2012-11-30T17:22:37.683 回答