Do I need a scrollview / custom listview?

DevBaby

Active Member
Licensed User
Longtime User
Hi,

I need to show a list of items (fruit) that the user and scroll through and then select for purchase. Each item to select will have about 5 lines of information. For example...

Item 1
Line 1 - Orange (left aligned, bold, large font size)
Line 2 - 99 cents / pound (right aligned, italicized)
Line 3 - 150 calories (left aligned)
Line 4 - Distributor (left aligned)
Line 5 - Product Code : 123 (right aligned)

Item 2
Line 1 - Apples (left aligned, bold, large font size)
Line 2 - 89 cents / pound (right aligned, italicized)
Line 3 - 90 calories (left aligned)
Line 4 - Distributor (left aligned)
Line 5 - Product Code : 123456 (right aligned)

and so forth....

I belive the listview only allows 2 rows max for each item. I am not sure how the scrollview works. How can I implement the above?

Also, the static word "Product Code :" in Line 5 has to be aligned at the same position for each item regardless of its value. Product Code : 123 vs. Product Code : 12345. I may just need a label control after the static word where I can populate the value.
 
Last edited:
Top