美文网首页
scrollView内容填充

scrollView内容填充

作者: Pan_s_Y | 来源:发表于2018-03-17 11:21 被阅读0次

    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">
    

    相关文章

      网友评论

          本文标题:scrollView内容填充

          本文链接:https://www.haomeiwen.com/subject/zpzlqftx.html