https://github.com/shts/animatedclocktextview
https://github.com/shts/animatedclocktextview
android animation clock library
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/shts/animatedclocktextview
- Owner: shts
- Created: 2017-07-28T08:57:10.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-31T09:44:15.000Z (almost 9 years ago)
- Last Synced: 2025-04-06T21:37:42.524Z (over 1 year ago)
- Topics: android, animation, clock, library
- Language: Java
- Size: 434 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
AnimatedClockTextView
====
[](https://jitpack.io/#shts/AnimatedClockTextView)

How to use
----
```xml
```
```java
AnimatedClockTextView tv = (AnimatedClockTextView) findViewById(R.id.text);
tv.setTime(11, 30); // <- 11:30
tv.setDuration(2000L);
tv.animateToTime(14, 45);
```
Install
---
```
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
```
dependencies {
compile 'com.github.shts:AnimatedClockTextView:1.0.0'
}
```