Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danielceinos/fsanimatedtextview
Animated Number Text View Library
https://github.com/danielceinos/fsanimatedtextview
android android-library kotlin kotlin-android kotlin-library library number textview
Last synced: about 22 hours ago
JSON representation
Animated Number Text View Library
- Host: GitHub
- URL: https://github.com/danielceinos/fsanimatedtextview
- Owner: danielceinos
- License: mit
- Created: 2018-02-02T16:50:51.000Z (almost 7 years ago)
- Default Branch: develop
- Last Pushed: 2018-02-04T12:33:25.000Z (almost 7 years ago)
- Last Synced: 2023-10-20T01:31:40.481Z (about 1 year ago)
- Topics: android, android-library, kotlin, kotlin-android, kotlin-library, library, number, textview
- Language: Kotlin
- Homepage:
- Size: 1.01 MB
- Stars: 32
- Watchers: 4
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# FSAnimatedTextView
[![License](https://img.shields.io/badge/license-MIT-blue.svg)](https://github.com/danielceinos/FSAnimatedTextView/blob/master/LICENSE.md)
[![Version](https://img.shields.io/badge/jitpack-1.0.5-green.svg)](https://jitpack.io/#danielceinos/FSAnimatedTextView/1.0.5)
# Requirements
- minAndroidSdk: 16
# Installation
Add to your gradle.build:
```
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```
```
dependencies {
compile 'com.github.danielceinos:FSAnimatedTextView:1.0.5'
}
```
# Use## Options
```xml
```## Example
```xml
``````kotlin
findViewById(R.id.tv_number).setNum(1337)
``````kotlin
findViewById(R.id.tv_number).setText("hey!")
``````kotlin
findViewById(R.id.tv_like).increment(1)
```
```kotlin
findViewById(R.id.tv_like).decrement(6)
```