Joel Martinez
Joel Martinez

Reputation: 47749

Android picker/list similar to iOS date picker

I'd like to implement an ios style picker on Android with multiple columns, such as this one:

enter image description here

Yes, I know that Android has a slightly different platform default for this kind of UI, but I really like the IOS style that shows the different options above and below and lets you easily drag up and down.

I'm already aware of this DateSlider project, but it's specific for dates, and I want to use it for custom lists. And also it uses horizontal scrolling rather than vertical.

Thanks!

Upvotes: 5

Views: 21108

Answers (4)

Ayush Goyal
Ayush Goyal

Reputation: 2079

I reworked widget mentioned my iturki. Have a look:

enter image description here

Code on github.

Upvotes: 3

Haitham Elsheshtawy
Haitham Elsheshtawy

Reputation: 1

An alternative DatePicker for Android http://code.google.com/p/android-dateslider/

Upvotes: 0

iTurki
iTurki

Reputation: 16398

I was looking for something like that, until I found this widget. This is how it looks like:

enter image description here enter image description here

Although I still didn't find a way to use it in my app ! Any help will be appreciated :)

Upvotes: 8

w.donahue
w.donahue

Reputation: 10886

The closest thing built into Android is the Time Picker. Its not as fancy as its iOS counterpart, but gets the job done.

Upvotes: 1

Related Questions