其他分享
首页 > 其他分享> > LinearLayout 垂直滚动条

LinearLayout 垂直滚动条

作者:互联网

activity中经常只是一个LinearLayout,但这样的话,如果activity内容超过一屏,无法滚动查看下面的内容。

这时只需在外面嵌套一个ScrollView就可以了,直接贴代码吧

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:scrollbars="vertical"
android:fadingEdge="vertical">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
>
</LinearLayout>
</ScrollView>

注:同样适用于RelativeLayout布局

 

   

标签:垂直,layout,vertical,parent,height,滚动条,android,LinearLayout,match
来源: https://www.cnblogs.com/javalinux/p/16188162.html