ScrollView巢狀LinearLayout佈局不能撐滿全屏的問題

kkklzc發表於2020-10-19

當ScrollView裡的元素想填滿ScrollView時,使用"fill_parent"或者"match_parent"是不管用的,必需為ScrollView設定:android:fillViewport=“true”。
如果沒有加入此設定,裡面的元素會按照wrap_content來計算,無論你設定了"fill_parent"還是"match_parent"都是無效的。

相關文章