美文网首页
ScrollView

ScrollView

作者: 余影悬铃 | 来源:发表于2019-02-15 09:52 被阅读0次

    ScrollView子布局填满整个屏幕

    • ScrollView直接子View只能有一个,一般高度是自适应内容高度,可能会遇到不能填满整个屏幕的情况,那么解决办法就是增加一个属性:

    android:fillViewport="true"

            <ScrollView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:fillViewport="true">
                ...
            </ScrollView>
    

    由何处而学

    相关文章

      网友评论

          本文标题:ScrollView

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