[android-developers] Re: LinearLayout with multiple TextViews

2009-12-31 Thread Sasikumar.S
You got any solution for this? If so pls mail that to me.. Same problem for me also... On Dec 30, 6:44 pm, legerb wrote: > I'm struggling with the following: > I have a linear layout with horizontal orientation, which I'm adding > text views dynamically (with WRAP_CONTENT layout params). The

[android-developers] Re: LinearLayout with multiple TextViews

2009-12-30 Thread Brion Emde
I struggled with this also and finally wrote a custom view component derived from ViewGroup. I added a setAdapter() method and inside that I go through the adapter contents, just like you would in an AdapterView-derived class. For each data item in the adapter, call getView() from the adapter and d