B4X B4A Android Tutorial - clv (CustomListView) itemclick

preview_player
Показать описание
one of the questions that you aske me was about Item click in CLV: for example how to change the value of one label when we click on an Item.

please click here to access more tutorials:
Рекомендации по теме
Комментарии
Автор

Good day. I have horizontal CLV as item of vertical CLV. Horizontal CLV I'm using for taking photo, but I can't find solution to set it for imageView in this CLV. Could you advise please, how can I get item from horizontal CLV for set or change properties.

Читаечка
Автор

Good day master. How to add the stretchable and dynamic height of a label inside CLV? TIA

jeruelxd
Автор

Is there a way to reference the button by name instead of ordinal position. For example, instead of p.getview(1) use p.button1.text = "....". I guess I was wondering when we retrieve the layout screen with the views inside, the name of the button would be accessible....

gm-sjqg
Автор

Does adding an item to the xCustomListView require a panel to be created in code?

emadleiman
Автор

I used CLV and what I want to happen is that if I clicked an Item on my list it will start another activity...

Sub CustomListGr1_ItemClick (Index As Int, Value As Object)
If Value = "Attendance" Then

End If
End Sub

this is what I did but when I run it, it doesn't start or calls the activity but there were no errors on my code what am I missing here?

elyzelgraceflores