滚动条有两种增加方式,从xml文件和从java文件,我主要记录了从xml文件增加。
有水平和竖直方向两种滚动条,同时,默认一个滚动条下面只能有一个控件,如果想要
添加多个控件,就需要在这些控件的外层增加一个布局,下面shi线性布局。
<!--水平方向的滚动条-->
<HorizontalScrollView
android:layout_width="wrap_content"
android:layout_height="match_parent">
</HorizontalScrollView>
<!--是竖直方向的滚动条-->
<ScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="25dp"
android:text="我爱安卓开发,安卓开发让我开心,
我爱安卓开发,安卓开发让我开心, "/>
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="25dp"
android:text="巴拉巴拉,
无卡无卡
皮卡皮卡"/>
</LinearLayout>
</ScrollView>