LinearLayout 垂直滚动条

2022/4/24 23:13:12

本文主要是介绍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布局

 



这篇关于LinearLayout 垂直滚动条的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程