ScrollView垂直滚动控件和HorizontalScrollView水平滚动控件

亡梦爱人 提交于 2019-12-21 20:54:49

这个控件的特点就是里面只可以有一个控件,一般我们都是这样来做,外面放一个滚动条控件,里面放一个垂直的线性布局垂直摆放,然后在线性布局里添加控件

http://schemas.android.com/apk/res/android"
    xmlns:tools="
http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:scrollbars="none">                       //把滚动条关闭

         android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical" >

 水平滚控件和垂直一样

如果想让两个嵌套也可以

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!