I am using the following to change the text property of a bunch of views based on the tag property.
I am getting Unknown member: text in the log
can the text property not be updated this way?
B4X:
Sub btnClearAll_Click
For i = 0 To Activity.NumberOfViews - 1
Dim v As View
v = Activity.GetView(i)
If v.Tag=1 Then
v.text = ""
End If
Next
End Sub
I am getting Unknown member: text in the log
can the text property not be updated this way?