[Android Pro] ScrollView使用fillViewport设置高度为MatchParent
Posted atom blog
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[Android Pro] ScrollView使用fillViewport设置高度为MatchParent相关的知识,希望对你有一定的参考价值。
reference to : http://blog.csdn.net/u012975705/article/details/49275001
之前遇到一问题,就是当使用ScrollView时,ScrollView控件里的布局无法充满整个手机屏幕,通过阅读源码发现,ScrollView中有个mFillViewport属性:
When set to true, the scroll view measure its child to make it fill the currently visible area
大概意思就是当mFillViewport设置为true的时候,其子视图能够自动填充满当前可见的整个区域。即,在xml布局文件中为ScrollView控件添加
android:fillViewport="true"
能使ScrollView里的元素填满整个ScrollView。
以上是关于[Android Pro] ScrollView使用fillViewport设置高度为MatchParent的主要内容,如果未能解决你的问题,请参考以下文章
[Android Pro] Android TypedValue.applyDimension()的用法