[android-developers] How to add labels above this table layout

2010-12-28 Thread pramod.deore
I have following tablelayout in my xml file. ?xml version=1.0 encoding=utf-8? TableLayout xmlns:android=http://schemas.android.com/apk/res/ android android:layout_width=fill_parent android:layout_height=fill_parent TableRow android:textColor=#00FF00

Re: [android-developers] How to add labels above this table layout

2010-12-28 Thread Mark Murphy
Option #1: Put the TableLayout in a ScrollView, wrap the ScrollView in a LinearLayout, put the labels above the ScrollView in the LinearLayout, and have the labels be incorrectly located over the columns. Option #2: Write your own AdapterView that implements your desired scrolling and table