如何滚动内容?

时间:2013-07-20 19:52:45

标签: android textview android-button android-scrollview

我有以下问题:

我需要18个按钮,旁边有TextView个,顶部有一个TextView。当然,它们不适合显示,所以我搜索了这个问题并找到ListView,但这对我不起作用,因为我需要18 ButtonsTextViews不同的ID。

我希望你能帮助我。

1 个答案:

答案 0 :(得分:2)

使用 <ScrollView> 注意 <ScrollView> 只有一个直接孩子

所以必须使用

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:orientation="vertical" >
        <!--  your contents  are here  -->
    </LinearLayout>

</ScrollView>