I am currently trying to make a dial style alert dialog to pick numbers within a certain range.
I have come across using the time picker dialog to create the dial effect, but I noticed the dialog would need has to pass the HourOfDay and minutes.
TimePickerDialog(Context context, TimePickerDialog.OnTimeSetListener listener, int hourOfDay, int minute, boolean is24HourView)
How do I augment this to have it take 1 int? And is the use of TimePicker to try and display the values in dial form valid?
Thanks