vecino Well-Known Member Licensed User Longtime User Feb 2, 2014 #1 Hello, is it possible to create a listview with 3 lines and each is a different color? Thanks and regards.
Hello, is it possible to create a listview with 3 lines and each is a different color? Thanks and regards.
LucaMs Expert Licensed User Longtime User Feb 2, 2014 #2 You could use: CustomListView or CheckList or create your own, using a ScrollView. Create a layout (for example lay3LinesRow) with the views of a "row" (an ImageView, labels, edtitexts ...) Then, in your code, you create a panel (for example pnlRow) and add it to the scrollview; finally, load the layout in the panel (pnlRow.LoadLayout("lay3LinesRow")). Last edited: Feb 2, 2014 Upvote 0
You could use: CustomListView or CheckList or create your own, using a ScrollView. Create a layout (for example lay3LinesRow) with the views of a "row" (an ImageView, labels, edtitexts ...) Then, in your code, you create a panel (for example pnlRow) and add it to the scrollview; finally, load the layout in the panel (pnlRow.LoadLayout("lay3LinesRow")).
vecino Well-Known Member Licensed User Longtime User Feb 2, 2014 #3 Thanks, it is a good idea. Upvote 0