如何使内容列表比父屏幕长?

时间:2018-12-10 13:14:54

标签: java android

我正在编写一个工程应用程序,它将具有数十个单独的活动。我想要一个带有链接到每个活动的按钮的内容页面。我能够毫无问题地编码按钮。

但是,现在列表越来越长,我希望它比屏幕长得多。我需要能够向下滚动列表。

我该怎么办?

1 个答案:

答案 0 :(得分:0)

最简单的解决方案是将LinearLayoutScrollView包装。

<ScrollView with="match_parent .....>
    <LinearLayout width and height....>
        <Button/>
        <Button/>
    </LinearLayout>
</ScrollView>