views:

53

answers:

1

I'm looking to create something EXACTLY like TimePickerDialog (look and feel) in Android, but it would be for MINUTES/SECONDS, not HOURS/MINUTES. Therefore AM/PM would not be relevant and would therefore allow MINUTE to be greater than 24 (making the max 59).

Is it possible to change the TimePickerDialog instance in any way to reflect this?

Any and all suggestions would be greatly appreciated. :-)

A: 

Is it possible to change the TimePickerDialog instance in any way to reflect this?

No, but the layout and source code to TimePickerDialog are both available as a starting point for implementing your own dialog.

CommonsWare
Great; this helped a lot! I landed up implementing my own NumberPicker which I got from TimePickerDialog. :-)
Fran Fitzpatrick