i am able to implement the table layout with header (row) and the column1 as in the picture. But I wish to display Col1 constantly on the screen even when the table is scrolled horizontally. any work around?

enter image description here

link|improve this question

feedback

1 Answer

up vote 0 down vote accepted

You need to create 2 different UI elements

Column 1 as ListView and rest as a TableLayout.

You need to capture the touch event on the UI Component and the pass it to the other so that scroll of both the component are in sync. Thats my opinion, there can be a different solution to it as well.

link|improve this answer
@khotmanish..wouldn't this approach make the scroll sluggish? i have implemented this using two list views and the result was, a very sluggish scroll... – i_raqz Jun 22 '11 at 14:30
There is no specific reason for this to be sluggish. I had implemented it in the past and it worked fine for me. Using the listview also takes care or recycling the views and hence there would be less GC calls. – Frank Costello Jun 22 '11 at 14:41
Great..do you still have the source code with you? – i_raqz Jun 22 '11 at 14:51
Ya but then it was for a client project so cant share it wit you... sorry for that :( – Frank Costello Jun 22 '11 at 15:03
no problem.. thanks! – i_raqz Jun 22 '11 at 15:13
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.