我们怎样才能使表格布局双向滚动(水平,垂直)

时间:2010-03-02 10:35:34

标签: android android-widget

我在XML文件中定义了一个表,该表当前设置为垂直滚动。但我也希望它根据需要水平滚动。

以下是使用中的XML代码

<?xml version="1.0" encoding="utf-8"?>

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

    <TableLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:stretchColumns="0,1,2"
        android:id="@+id/tLayout"
        android:scrollbars="vertical"
        >   
        <TableRow
            android:layout_width="fill_parent">
            <TextView
                android:padding="3dip"
                android:gravity="left"
                android:text="Name"
                />
            <TextView
                android:padding="3dip"
                android:gravity="left"
                android:text="Address"
                />
            <TextView
                android:padding="3dip"
                android:gravity="left"
                android:text="Age"
                />
        </TableRow>
    </TableLayout>
</ScrollView>

3 个答案:

答案 0 :(得分:8)

我有同样的问题,我解决了它将Horizo​​ntalScrollView作为ScrollView的子项,然后tableLayout作为Horizo​​ntalScrollView的子项:

                           

答案 1 :(得分:2)

您可以查看我创建的这个库:https://github.com/InQBarna/TableFixHeaders

它实现了一个可以通过Adapeter填充的表。它还回收了观点。

答案 2 :(得分:-1)

Horizo​​ntalScrollView能为您做任何事吗?

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

也许在xml的根目录中添加某种布局(LinearLayout,Relativelayout等)?