Hii experts,
My custom view Label class is working fine.
I add custom view label object in custom list view by add row function.
But customlistview_itemclick event is not running when I click on custom view.
Here is my code of custom cllick event
B4X:
Private Sub mBase_Click
Log(mCallBack)
Log(mEventName)
If SubExists(mCallBack,mEventName & "_Click") Then
CallSub(mCallBack,mEventName & "_Click")
End If
End Sub
You must learn basics of B4A, so you could do what you want. Go watch learning videos created by Erel and find booklets.
I don't know if anyone can help you before you understand basics.
If you remove any click event in your blable customview module, and the CustomListView1_ItemClick works!
But, then you loose any Click event if you use the blable customview alone somewhere else.
I don't know if it's possible to transmit any event to the parent view of a customview.