Soniya
Soniya

Reputation: 127

How to add DropDown in Android application

I want to add drop down list in android application. Can anybody tell me, how to do this?

Upvotes: 5

Views: 20734

Answers (2)

Vaibhav Jadhav
Vaibhav Jadhav

Reputation: 9

You dont have drop down option in android. you can use spinner instead. use this link for spinner,it absolutely work well in eclipse. http://developer.android.com/guide/topics/ui/controls/spinner.html

Upvotes: 0

Rubyd
Rubyd

Reputation: 61

Android does not have any 'Drop Down' Option. You should use the 'Spinner' instead of.

Here is the implementation of Spinner:

http://developer.android.com/reference/android/widget/Spinner.html

Upvotes: 6

Related Questions