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>
哇,謝謝!那很簡單。 – MikeS