alt text

Hi, I have seen the above control in a few Android applications. I know it is not native to Android, what is the name of the control and how do I implement it in Android? Could it be done using a ListView including the behavior?

link|improve this question

Even i'm looking for answer to same ! how-to .... – piyushnp Nov 29 '10 at 4:31
you can use an alert dialog box with list view in it – Shaireen Nov 29 '10 at 4:32
Why havent I seen this on Android apps....? – Asad Khan Nov 29 '10 at 4:41
@Asad Khan, Check Bubble Blast 2! I just got a logic behind it. They have used a ListView. – Ragunath Jawahar Nov 29 '10 at 4:46
feedback

3 Answers

On iPhone it's called UIPickerView. I wouldn't recommend to exactly immitate its look, because it won't harmonize with the look of the other GUI widgets of android, which will result in some kind of a "cheap" look'n'feel for the user.

link|improve this answer
feedback

You can make custom Spinners for Android, it just takes some work. I suggest taking a look at this tutorial to see how to create the custom view the user sees before bringing up the Spinner: http://www.gersic.com/blog.php?id=57.

As for the actual view that is shown...you'll want to look into making a custom Adapter object that you can pass into the Spinner object. For this, I would probably look in to expanding on one of the Adapters Google has provided or even using one as an example. For more on Adapters you can look at the Google SDK for Android: http://developer.android.com/reference/android/widget/Adapter.html.

I do agree with Dominik though...you should stay with the Android look and feel to keep consistency.

link|improve this answer
what would be the best decision if I am porting an iPhone Application and my client wants the same look and feel? – Ragunath Jawahar Nov 29 '10 at 5:19
Well, it is up to the client as to what they actually want in the end but you could try explaining to them that Android is a different platform with different user interface guidelines and that users are looking for applications that match the Android look and feel. Even if the interface does not look the exact same between the iPhone and an Android device, as long as the same functionality is there, the user shouldn't care or notice one way or another. I think it would be best to stick with the Android UI. Plus, it will save you time and effort and let you deliver something sooner. – SpencerElliott Nov 29 '10 at 14:18
You might find this useful for outlining some of Android's UI patterns: google.com/events/io/2010/sessions/… – adamp Nov 29 '10 at 16:46
feedback
up vote 1 down vote accepted

Check the following link http://code.google.com/p/android-wheel/ to find a custom view that imitates the UI Picker View.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.