Android ScrollView无法填充满屏幕的解决办法
程序员文章站
2023-11-07 15:30:46
android scrollview无法填充满屏幕的解决办法
scrollview滚动视图是指当拥有很多内容、屏幕显示不完时、需要通过滚动跳来显示的视图、scrollvi...
android scrollview无法填充满屏幕的解决办法
scrollview滚动视图是指当拥有很多内容、屏幕显示不完时、需要通过滚动跳来显示的视图、scrollview的一般用法如下
以下代码在scrollview里面放了一个relativelayout、并且是设置为android:layout_height="match_parent"填充全屏的和relativelayout里面放置了一个textview背景设为了一张图片、按照代码理解、图片应该是居于屏幕的最下方的
<scrollview android:layout_width="match_parent" android:layout_height="match_parent" > <relativelayout android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/common_background" > <textview android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_centerhorizontal="true" android:layout_alignparentbottom="true" android:background="@drawable/bottom_bg" /> </relativelayout> </scrollview>
但是最后运行的效果是这样的、你会发现图片并没有局到整个屏幕的下边、而是在上面scrollview无法填充满屏幕,
那么要怎么解决这个问题呢、最后我在查看文档的时候发现了这样一个属性、设置了就可以解决这个问题了
<scrollview android:layout_width="match_parent" android:layout_height="match_parent" android:fillviewport="true" > </scrollview>
也就是说设置scrollview的android:fillviewport为true、即 android:fillviewport="true"即可。