ScrollView的fillViewport 属性

ScrollView 没有fillVeewport=“true” 时, 里面的元素(比如LinearLayout )会按照wrap_content 来计算(不论它是否设了"fill_parent "),而如果LinearLayout 里的元素设置了fill_parent ,那么也是不管用的,因为LinearLayout 依赖里面的元素,而里面的元素又依赖LinearLayout ,这样自相矛盾.所以里面元素设置了fill_parent ,也会当做wrap_content 来计算.

你可能感兴趣的:(ScrollView的fillViewport 属性)