飘逸皮皮虾

文章
3
资源
0
加入时间
2年10月18天

ScrollView嵌套LinearLayout布局不能撑满全屏的问题

当ScrollView里的元素想填满ScrollView时,使用"fill_parent"或者"match_parent"是不管用的,必需为ScrollView设置:android:fillViewport=“true”。如果没有加入此设置,里面的元素会按照wrap_content来计算,无论你设置了"fill_parent"还是"match_parent"都是无效的。...