gurehbgui
gurehbgui

Reputation: 14694

something like dropdown in a android app?

I'm searching for a widget in a android app where the user can select a item from a specific list. it's only possible to select one and the list is defined by the app.

it's like a dropdown. I can't use a simple listView because I need at least 4 of there controls on one page. so what is a good solution?

Upvotes: 1

Views: 107

Answers (3)

Akshay
Akshay

Reputation: 2534

You can use Spinner in android for dropdown.or you can use AlertDialog as like that of drodown.For using spinner read this.For using AlertDialog read this

Upvotes: 0

iTurki
iTurki

Reputation: 16398

Spinners is what you are looking for.

Upvotes: 3

ThePCWizard
ThePCWizard

Reputation: 3348

I think, you are looking for something like Spinners

Upvotes: 3

Related Questions