本文主要是介绍ScrollView下子控件设置fill_parent无效,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
ScrollView下子控件设置fill_parent高度无效
问题描述:为ScrollView中子控件设置高度时,无论是全屏还是设置类似200dip这种指定高度,会发现子控件只有wrap_content的效果。
效果图
解决办法:在ScrollView中加入android:fillViewport=”true”
<ScrollView android:layout_width="fill_parent" android:layout_height="fill_parent"
android:fillViewport="true">
<TextView android:layout_width="fill_parent" android:layout_height="wrap_content"
android:background="@color/material_blue_grey_800" android:text="内容"
android:textSize="20sp" android:textColor="#ffffff"/>
</ScrollView>
效果图
这篇关于ScrollView下子控件设置fill_parent无效的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!