K ktlua Member Licensed User Nov 19, 2016 #1 In my project, I need to use Table Layout. But when I search the b4a forum, I can only find scroll views. Do we use scroll views instead of Table Layout (as in Android Studio) and what are the advantages as well as disadvantages? Thanks.
In my project, I need to use Table Layout. But when I search the b4a forum, I can only find scroll views. Do we use scroll views instead of Table Layout (as in Android Studio) and what are the advantages as well as disadvantages? Thanks.
KMatle Expert Licensed User Longtime User Nov 19, 2016 #2 That's no dessent. A scrollview is a view where you can put n views to and scroll through it. It's like an Excel where you can scroll down/up. Use this library: https://www.b4x.com/android/forum/threads/class-tableview-supports-tables-of-any-size.19254/ Or (i prefer this): Add an Scrollview to the Activity's panel and put labels on it (x in a row and y rows). It's good to learn how to work with views. Upvote 0
That's no dessent. A scrollview is a view where you can put n views to and scroll through it. It's like an Excel where you can scroll down/up. Use this library: https://www.b4x.com/android/forum/threads/class-tableview-supports-tables-of-any-size.19254/ Or (i prefer this): Add an Scrollview to the Activity's panel and put labels on it (x in a row and y rows). It's good to learn how to work with views.
Erel B4X founder Staff member Licensed User Longtime User Nov 20, 2016 #3 KMatle said: Add an Scrollview to the Activity's panel and put labels on it (x in a row and y rows). Click to expand... In most cases it is better to use CustomListView which wraps a ScrollView and adds more features. Upvote 0
KMatle said: Add an Scrollview to the Activity's panel and put labels on it (x in a row and y rows). Click to expand... In most cases it is better to use CustomListView which wraps a ScrollView and adds more features.