Android Question spinner

rogel a. tolentino

Member
Licensed User
B4X:
Sub Globals
   Dim Spinner1 As Spinner
End Sub
Sub Activity_Create(FirstTime As Boolean)
    

    Activity.LoadLayout("Location")  
    Spinner1.Initialize("InitializeSpinner1") '<<<< Is this correct?
    Spinner1.Add("Item1")
    Spinner1.Add("Item2")
    Spinner1.Add("Item3")
End Sub
 
Upvote 0
D

Deleted member 103

Guest
If you do not want to change the theme, which would be the right way, as Klaus has suggested, change the text color to gray.
 
Upvote 0
Top