Fancy Dynamic List In Android: Tablelayout Vs Listview
There is a requirement to have not-so-trivial dynamic list, each record of which consists of several columns (texts, buttons). It should look something like: Text11 Text12 Button1
Solution 1:
Using ListView and ArrayAdapter you can do more complicated layouts than just a TextView. You could specify a LinearLayout with 2 TextViews and 2 Buttons for each row in the List.
here's a similar question Android: ListView elements with multiple clickable buttons
Post a Comment for "Fancy Dynamic List In Android: Tablelayout Vs Listview"