standard list are designed to hold objects not only primitive types.
So you may define a type with those 9 items you need and then add to the list an object instance of that type.
In pseudo code:
B4X:
..
type mytype=(item#1 as string, item#2 as int...)
dim myobject as mytype
myobject.item#1 = "john"
mybject.item#2 = 1
..
mylist.add(myobject)
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.