Hi To all,
i trying to get all B4XFloatTextField from my activity to change all LargeLabelTextSize at once.
But if a use GetAllViewsRecursive he get the labels and edittexts from the activity, not the B4XFloatTextField View.
I used this code to check all views:
And the result is the image attached.
I attached the layout of my panel/activity too...
Would anyone know how i would get B4XFloatTextField LargeLabelTextSize property?
Thanks for advance
i trying to get all B4XFloatTextField from my activity to change all LargeLabelTextSize at once.
But if a use GetAllViewsRecursive he get the labels and edittexts from the activity, not the B4XFloatTextField View.
I used this code to check all views:
B4X:
For Each v As View In PnlCadastro.GetAllViewsRecursive
If v Is EditText Then
Log("Is edittext")
End If
If v Is Label Then
Log("Is label")
End If
If v Is B4XFloatTextField Then
Log("Is B4XField")
End If
Next
And the result is the image attached.
I attached the layout of my panel/activity too...
Would anyone know how i would get B4XFloatTextField LargeLabelTextSize property?
Thanks for advance