ScrollView子布局填满整个屏幕
- ScrollView直接子View只能有一个,一般高度是自适应内容高度,可能会遇到不能填满整个屏幕的情况,那么解决办法就是增加一个属性:
android:fillViewport="true"
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
...
</ScrollView>
网友评论