B4A Question Scrool 2 Customlistview together - Erel (first post)    May 10, 2020 This is not a good reason. You can use a single CLV and show data from multiple sources. Scrolling multiple CLVs: https://www.b4x.-column-customlistview.115954/post-724715 B4A Question CustomListView - 2 Directional Scrolling - Erel (first post)    Feb 24, 2019   (1 reaction) It is problematic to combine two scrollable views. You should consider building a different layout. Maybe with a dialog with a list instead of the second list. B4A Question How do you design long pages where it can also have horizontal scroll? - Andrew (Digitwell) (first post)    Jul 14, 2023 On Android, you can nest multiple horizontal custom List views in a vertical custom list view or vie versa and they will all scroll correctly.
The only problem I have had is trying to nest custom list views which scroll in the same direction.
Nesting a scrolling webview in a custom list view al B4A Question Horizontal Scrollview with multiple CustomListViews - PaulMeuris    Oct 26, 2022   (4 reactions) Panel.Width = ((i-1)*hsv1.Width)
End Sub
Private Sub set_clv(ipnl As Int) As CustomListView
Dim p As B4XView = xui.CreatePanel("")
p.SetLayoutAnimated(0, 0, 0, hsv1.Width, hsv1.Height)
p.LoadLayout("clv1_layout")
clv1.AsView.RemoveViewFromParent
Return clv1
End Sub
Private Sub fi B4A Question Customlistview with 2 columns and different heights - Mahares (first post)    Jan 19, 2021 Last night I found Erel's example in my archives that features the thread request by @asales But when I wanted to put a link to its thread for @asales, I put down this search text in the forum search: scrolling multiple customlistview. After 5 pages, I could not find it, so I gave up. What is Erel's B4A Question B4A Scrolling Grid using CustomListViews and a Horizontal ScrollView - PaulMeuris    Oct 16, 2022   (9 reactions) Have you ever wondered how you can make a Custom List View scroll horizontally?
Well, in this small tutorial you can read all about it.
You can find the goodies in the attached files: the B4A_Scroll_Grid.pdf and the persons.zip file with an example CSV-file.
134878 134879
Happy coding! B4A Question UI Design - Multiverse app (first post)    Jun 29, 2018   (1 reaction) Use a CustomListview for the vertical scrolling list. Make separate designer files for individual "cards".
For the cards that you want to scroll horizontally, use scrollview2D. B4A Question Two Customlistview side by side synchronized scrolling - Erel (first post)    Mar 07, 2021   (1 reaction) https://www.b4x.-column-customlistview.115954/#post-724715 B4A Question Endless Scrolling CustomListView - Erel (first post)    Jul 19, 2017   (3 reactions) V1.75 is attached.
It adds a ReachEnd event:
Sub Clv1_ReachEnd
Log("reach end")
clv1.AddTextItem("New item!!!", "")
End Sub B4A Question Adjust views to device screen resolution - Andrew (Digitwell) (first post)    Nov 25, 2021   (1 reaction) How are you designing the layouts (using anchors and scripts)? Have you considered using scrolling. If you put the layout in a panel and put the panel in a CustomListView this will allow the user to scroll (only in one direction) In the case above the buttons could be outside the customlistview s Page: 1   2   3   4   5   6   7   Powered by ColBERT |