Jonas wrote: > How can I pop up a list of items much like a Spinner but I don't wan't > the Spinner widgets itself (the drop down item). > I only like to pop up a list of items and select one item, what type > of widget can I use?
A Button and an AlertDialog. Or, a Button and a ListView, the latter of which has visibility of GONE until the button is clicked. Use a RelativeLayout or FrameLayout to allow the ListView to float over top other widgets in the activity. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _Android Programming Tutorials_ Version 1.0 In Print! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en -~----------~----~----~----~------~----~------~--~---

