0

Drop list using quick action dialog in android ?

drop down list should be

enter image description here

i don't want to use spinner.

i have tried out example

http://www.chupamobile.com/tutorial/details/63/Quick+Actions+-+Tutorial/

and

http://www.londatiga.net/it/how-to-create-quickaction-dialog-in-android/

please help.

Thanks in advance......

Shiva
  • 754
  • 6
  • 16

3 Answers3

2

Check out this open source project ("a small android library to create QuickAction dialog with Gallery3D app style")

https://github.com/lorensiuswlt/NewQuickAction3D

Edison
  • 5,961
  • 4
  • 23
  • 39
2

Well Shivaji,

This would not be possible with straight options and you need customize library for that if I am not wrong. Because QuickAction is preferably used to offer a minimum set of actions.

However, as an alternate, I would suggest you to make use of PopupWindow and integrate your ListView inside.

This should work perfectly for you.

Hope this helps.

Jigar Pandya
  • 6,004
  • 2
  • 27
  • 45
0

You can use PopUpwindow here.Popup window method showAtLocation(View yourEditTExt, int gravity, int x, int y) will show dropdown list below EditText

Mohit
  • 634
  • 5
  • 15