
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?
|
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?
| |||||||||
feedback
|
|
On iPhone it's called | |||
|
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. | |||||||
feedback
|
|
Check the following link http://code.google.com/p/android-wheel/ to find a custom view that imitates the UI Picker View. | |||
|
feedback
|