可使用控件ScrollView来做下翻滚动条,但是官方称,ScrollView内部只能包含一个控件

这样就可以无限加控件了,如下:

<ScollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

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

</ScrollView>

更多推荐

Android开发解决控件超出屏幕,不显示问题