He has specified a ListAdaptor to display his data that way. Basic4android comes with three pre-specified ListAdaptor layouts but you can't, at the moment anyway, define your own.
Those three layouts are the three ListAdaptors.Are ListAdaptors and "models" the same thing?
That's up to Erel. Why not request it on the wishlist thread?Is there a timeline for adding the ability to define our own ListAdaptors?
Those three layouts are the three ListAdaptors.
That's up to Erel. Why not request it on the wishlist thread?
You don't need to know about ListAdaptors to use Basic4android. Basic4android exposes a deliberately simplified carefully considered subset of the programming environment for Android and so avoids the need for users to know about low-level details like that.Perhaps the Listview tutorial should include that terminology instead of "models"
The native ListView is the most error prone and complicated view in Android. On the other hand, when set correctly, it is very powerful and with excellent performance.
There will be more "models" available in the future based on users requests.
For small to medium size lists you can use ScrollView instead of a ListView and it can be customized as needed. See this example: http://www.b4x.com/forum/basic4android-getting-started-tutorials/7221-list-two-columns-checkbox.html
The native ListView is the most error prone and complicated view in Android. On the other hand, when set correctly, it is very powerful and with excellent performance.
There will be more "models" available in the future based on users requests.
For small to medium size lists you can use ScrollView instead of a ListView and it can be customized as needed. See this example: http://www.b4x.com/forum/basic4android-getting-started-tutorials/7221-list-two-columns-checkbox.html
There are plans to add more models. Creating a completely customized model is currently not possible.