Is there in android already some widget for choosing time which doesn’t show popup like TimePicker? I have criteria for choosing time in popup so it looks weird to use Time Picker inside popup and open new.
Is there in android already some widget for choosing time which doesn’t show popup
Share
When writing my first app, I could not find one. I ended up using 3 spinners in a RelativeLayout, hour, minute, and am/pm. Then just have accept button that pulls the values from each and build your time.
Then in the onclick of the accept button
And build your time with whatever you are using (I was using calendar because I had dates also)