2012-11-30 91 views
0

我的想法有點令人驚訝......在以下XML中,我期望我的LinearLayout/TextView與我的ScrollView具有相同的大小。正如你從我包含的圖像中可以看到的,事實並非如此。Android ScrollView XML佈局大小奇怪

這是怎麼回事?爲什麼我的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> 

enter image description here

回答

1

使用

android:fillViewport="true"

ScrollView

+0

哇,謝謝!那很簡單。 – MikeS