1. 程式人生 > >ScrollView嵌套LinearLayout布局不能撐滿全屏的問題

ScrollView嵌套LinearLayout布局不能撐滿全屏的問題

沒有 you scroll parent content ont 使用 元素 near

當ScrollView裏的元素想填滿ScrollView時,使用"fill_parent"或者"match_parent"是不管用的,必需為ScrollView設置:android:fillViewport="true"。

當ScrollView沒有fillVeewport=“true”時, 裏面的元素(比如LinearLayout)會按照wrap_content來計算(不論它是否設了"fill_parent"或者"match_parent"),而如果LinearLayout的元素設置了fill_parent,那麽也是不管用的,因為LinearLayout依賴裏面的元素,而裏面的元素又依賴LinearLayout,這樣自相矛盾.所以裏面元素設置了fill_parent,也會當做wrap_content來計算.

ScrollView嵌套LinearLayout布局不能撐滿全屏的問題