如何在android中以编程方式添加水平和垂直scrollview

时间:2014-12-30 05:35:19

标签: android scrollview

我想在android中动态添加这种类型的水平和垂直滚动视图。但我还没有添加标题。如果有人知道如何在水平视图的每个顶部添加标题。这里首先是不同的,其他是相同的。

enter image description here

2 个答案:

答案 0 :(得分:1)

我认为您应首先使用ListView,然后使用HorizontalScrollView在其中添加项目。使用任何适配器设置ListView内的项目。这样,您也可以垂直滚动(ListView)并水平滚动。

参考:

答案 1 :(得分:0)

试试这个:

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

<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="320px" android:layout_height="fill_parent">

    <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/linlay" android:layout_width="320px"
        android:layout_height="fill_parent" android:stretchColumns="1"
        android:background="#000000"/>

</HorizontalScrollView>