如何让我的页面上下滑动?

时间:2013-12-20 19:51:13

标签: android button layout sliding

我想在布局上制作47个按钮,我无法弄清楚如何在我的布局上为所有这些按钮腾出空间,并使布局上下滑动..我知道,有很多关于这一点的主题,但我尝试了所有这些,我没有帮助我..所以,请,如果有人可以解释和写一个完整的按钮布局和滑动过程中所需的所有文件。拜托,非常感谢,我会很开心。谢谢!

2 个答案:

答案 0 :(得分:1)

试试这会对你有帮助。

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    >
    <LinearLayout 
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical"
        >
        <Button 
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text=""
            />
        .
        .
        .
    </LinearLayout>  
</ScrollView>

答案 1 :(得分:0)

  

我知道,有很多关于此的主题,但我尝试了所有   他们,我什么都没帮助我

你读过有关scrollview的信息吗

http://developer.android.com/reference/android/widget/ScrollView.html