Android Question Grid, List or Table ?

Hello everybody.
In B4A, which component should I use to create a list with columns? For example, I am entering a sale, and when inserting the products, I add them to a list, but separated by columns.

code - description - quantity - value - total
0001 item1 10 10.00 100.00
0002 item2 5 10.00 50.00
.....

And if it is necessary to change any item, I need to inform which column each field is in.
 

Lucas Siqueira

Active Member
Licensed User
Longtime User
use



 
Upvote 0

Lucas Siqueira

Active Member
Licensed User
Longtime User
As Aeric said, you can use different ways, I like to use clv because it lets me make items on the list prettier, look at this example

 
Upvote 0
Top