https://github.com/fennifith/timedatepicker
A simple Android library containing several time/date pickers and dialogs.
https://github.com/fennifith/timedatepicker
android android-library
Last synced: about 2 months ago
JSON representation
A simple Android library containing several time/date pickers and dialogs.
- Host: GitHub
- URL: https://github.com/fennifith/timedatepicker
- Owner: fennifith
- License: apache-2.0
- Created: 2018-05-17T01:15:01.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-01-16T20:06:55.000Z (over 6 years ago)
- Last Synced: 2025-04-05T04:11:25.179Z (6 months ago)
- Topics: android, android-library
- Language: Java
- Homepage: https://jitpack.io/#me.jfenn/TimeDatePicker
- Size: 269 KB
- Stars: 16
- Watchers: 1
- Forks: 5
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
TimeDatePicker is a simple Android library containing several configurable time/date picker views and dialogs.
[](https://jitpack.io/#me.jfenn/TimeDatePicker)
[](https://travis-ci.com/fennifith/TimeDatePicker)
[](https://discord.gg/8q8GQF2)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](/../../releases).
## Usage
### Setup
This project is published on [JitPack](https://jitpack.io), which you can add to your project by copying the following to your root build.gradle file.
```gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```To add the dependency, copy this line into your app module's build.gradle:
```gradle
implementation 'me.jfenn:TimeDatePicker:0.0.6'
```### Doing Stuff
Proper documentation/instructions will be added later.