I cant seem to extract FloatLabelEditText's TAG
It returns null.
this is the methods I have tried
It returns null.
this is the methods I have tried
B4X:
For Each v As View In panTreasures.GetAllViewsRecursive
If v Is EditText Then
Dim e As EditText
e = v
Log("ET " & e.tag)
End If
Try
If v Is FloatLabeledEditText Then
Dim e1 As FloatLabeledEditText
e1 = v
Log("FL " & e1.EditText.Tag)
End If
Catch
Log(LastException)
End Try
Next
Log("====== ")
Try
For i = 0 To panTreasures.NumberOfViews - 1
If panTreasures.GetView(i) Is FloatLabeledEditText Then
Log("====== " & panTreasures.GetView(i))
Dim e2 As FloatLabeledEditText
e2 = panTreasures.GetView(i)
Log("E2 " & e2.EditText.Tag)
End If
Next
Catch
Log(LastException)
End Try
Log("====== ")