An open API service indexing awesome lists of open source software.

https://github.com/shts/animatedclocktextview


https://github.com/shts/animatedclocktextview

android animation clock library

Last synced: about 2 months ago
JSON representation

Awesome Lists containing this project

README

          

AnimatedClockTextView
====

[![](https://jitpack.io/v/shts/AnimatedClockTextView.svg)](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'
}

```