In a layout I have a custom view (so B4XView). In it I add an ImageView, which has a value for Tag set. When I click that ImageView and recieve the event, the tag is Null.
This logs Null.
I feel I should be able to get the Tag here, am I missing something obvious?
(Might be worth to note that exact same code works fine in B4J.)
B4X:
Private Sub myFineCustomView_Click
Dim tmp As B4XView = Sender
Log(tmp.Tag)
End Sub
I feel I should be able to get the Tag here, am I missing something obvious?
(Might be worth to note that exact same code works fine in B4J.)