Android Question Need code snippet to add a spinner to a Tabhost

MrBcx

Member
Licensed User
Longtime User
How do I assign this kind of thing to a tab?

Surveyors(0)="Choose Surveyor ..."
Surveyors(1)="Bane"
Surveyors(2)="Chad"
Surveyors(3)="Clint"

Spinner1.Initialize("spin")
Spinner1.AddAll(Surveyors)

Activity.AddView(Spinner1,0dip,13dip,350dip,50dip)
 

MrBcx

Member
Licensed User
Longtime User
Disregard --

DELETED: Spinner1.Initialize("spin")

Spinner1.AddAll(Surveyors)

DELETED: Activity.AddView(Spinner1,0dip,13dip,350dip,50dip)
 
Upvote 0
Top