scrollView内容填充

2018-03-17  本文已影响0人  Pan_s_Y

ScrollView滚动视图是指当拥有很多内容、屏幕显示不完时、需要通过滚动条来显示的视图、Scrollview的一般用法如下、以下代码在Scrollview里面放了一个RelativeLayout、并且是设置为android:layout_height="match_parent"填充全屏的,但是测试以后不起作用。

后来在stackoverflow上找到了原因: http://stackoverflow.com/questions/2599837/linearlayout-not-expanding-inside-a-scrollview

要让ScrollView内部元素的 fill_parent 起作用必须设置android:fillViewport="true"

<ScrollView
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fillViewport="true">
上一篇下一篇

猜你喜欢

热点阅读