Despite giving a tag to all the views in my project (including Activity) I can see there is still one view
with a Null tag. Can't figure out what this view is. I can reproduce this easily for example take this project:
https://www.b4x.com/android/forum/threads/b4x-xui-b4xdialog-custom-dialogs.99756/
and give all views a tag the same as the view name and do in Public Sub Show:
Then we get:
Dialog.Show, vTag: iv
Dialog.Show, vTag: Base
Dialog.Show, vTag: -3
Dialog.Show, vTag: -1
Dialog.Show, vTag: null
Dialog.Show, vTag: txtFirstName
Dialog.Show, vTag: txtLastName
Dialog.Show, vTag: Label1
Dialog.Show, vTag: Label2
So, what is the view here with the null Tag?
RBS
with a Null tag. Can't figure out what this view is. I can reproduce this easily for example take this project:
https://www.b4x.com/android/forum/threads/b4x-xui-b4xdialog-custom-dialogs.99756/
and give all views a tag the same as the view name and do in Public Sub Show:
B4X:
For Each v As B4XView In Background.GetAllViewsRecursive
v.Enabled = False
Log("Dialog.Show, vTag: " & v.Tag)
Next
Then we get:
Dialog.Show, vTag: iv
Dialog.Show, vTag: Base
Dialog.Show, vTag: -3
Dialog.Show, vTag: -1
Dialog.Show, vTag: null
Dialog.Show, vTag: txtFirstName
Dialog.Show, vTag: txtLastName
Dialog.Show, vTag: Label1
Dialog.Show, vTag: Label2
So, what is the view here with the null Tag?
RBS