The panel contains several elements.
To change their properties I do:
I decided to replace Spinner with B4XComboBox
How can I add B4XComboBox to this function?
To change their properties I do:
B4X:
For i = 0 To pn.NumberOfViews - 1
Dim v As View=pn.GetView(i)
If pn.GetView(i) Is EditText Then
Dim et As EditText=v
et.TextSize=Starter.TextSize
Else If pn.GetView(i) Is Spinner Then
Dim sp As Spinner=v
sp.TextSize=Starter.TextSize
End
Next
How can I add B4XComboBox to this function?