you can create a clv that each item has a scrollview and add panels to those scrollviews
when thinking about it again i am not sure if you add a scrollview to a customlistview you will be able to trigger the touches inside the scrolviews because the clv will trigger them.
@Johan Hormaza Very good contribution, I am testing your example and it works well in fact I am customizing to my need, however How do we catch the click event of each card pressed?
Click event solved, with this code I can bring the value of the corresponding tags
B4X:
Private Sub CLV1_ItemClick (Index As Int, Value As Object)
Dim ClickedPanel As Panel = CLV1.GetPanel(Index)
Dim ClickedCardText As String = PanelTags.Get(ClickedPanel)
ToastMessageShow("Clicked: " & ClickedCardText, True)
End Sub
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.