Reputation: 1128
I am having a table defined in XML file, which currently set to Scroll vertically. But i also want it scroll horizontally as required.
Here is the code of XML in use
<?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>
Upvotes: 5
Views: 24291
Reputation: 5935
You can check this library that I made: https://github.com/InQBarna/TableFixHeaders
It Implements a table that can be filled through an Adapeter. It also recycles views.
Upvotes: 2
Reputation: 1148
I had the same problem and I solved it introducing a HorizontalScrollView as a child of the ScrollView and then the tableLayout as a child of the HorizontalScrollView:
Upvotes: 8
Reputation: 1242
Does HorizontalScrollView do anything for you?
http://developer.android.com/reference/android/widget/HorizontalScrollView.html
Perhaps add some kind of layout (LinearLayout, Relativelayout, etc.) to the root of your xml?
Upvotes: -1