[android-developers] Re: Notepad Sample - adding more columns to listview

2011-01-26 Thread Hein
Thank you so much. I am considering breaking the table up into multiple views as one see in some other apps. It just seems strange that there is no way to do this in android, however I've seen it in other apps, Iriduim Flares for example, which shows many numerals in columns and it's easy to

Re: [android-developers] Re: Notepad Sample - adding more columns to listview

2011-01-26 Thread Kostya Vasilyev
The popup in Iridium Flares looks like a TableLayout: http://developer.android.com/reference/android/widget/TableLayout.html TableLayout doesn't recycle views like ListView, and so isn't really suited for long scrollable lists, but it's just fine for presenting compact data (also useful for

Re: [android-developers] Re: Notepad Sample - adding more columns to listview

2011-01-26 Thread fatima mansuri
please don't send message me -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] Re: Notepad Sample - adding more columns to listview

2011-01-26 Thread Hein
I thought one could not do a row click on a table, so I assumed otherwise. Pity. Thanks again. On Jan 26, 1:50 pm, Kostya Vasilyev kmans...@gmail.com wrote: The popup in Iridium Flares looks like a TableLayout: http://developer.android.com/reference/android/widget/TableLayout.html