You can use GetType to know "exactly" what type it is:
B4X:
Dim ViewType As StringForEach V As ViewIn Panel1.GetAllViewsRecursive
ViewType = GetType(V)
Log(ViewType)
If ViewType.EndsWith("Button") ThenLog("Is a button")
ElseIf ViewType.EndsWith("TextView") ThenLog("Is a Label")
ElseIf ViewType.EndsWith("EditText") ThenLog("Is an EditText")
ElseEndIfNext
[You could optimize the code, getting the text after the last dot of ViewType]
I will use this opportunity to clarify about B4XView:
B4X:
Log(V Is B4XView) 'will always be true as any view can be assigned to B4XViewLog(GetType(V).Contains("B4XView")) 'will always be false as there is no such native type.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.