TimeDatePicker
TimeDatePicker copied to clipboard
A simple Android library containing several time/date pickers and dialogs.
TimeDatePicker is a simple Android library containing several configurable time/date picker views and dialogs.
This library was mainly created as a result of problems I ran into setting the colors/themes for Android's default time/date pickers to use. It will also try to combat some of the lack of intuitiveness created by the circular time picker (numbers immediately changing from hours to minutes after selection is nowhere near obvious to new users) while maintaining compatibility back to Android 4.0.3 (ICS).
Screenshots
Time Picker (12h) | Time Picker (24h) | Date Picker |
---|---|---|
![]() |
![]() |
![]() |
An APK of the sample app can be downloaded here.
Usage
Setup
This project is published on JitPack, which you can add to your project by copying the following to your root build.gradle file.
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
To add the dependency, copy this line into your app module's build.gradle:
implementation 'me.jfenn:TimeDatePicker:0.0.6'
Doing Stuff
Proper documentation/instructions will be added later.