Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cdflynn/checkview
An animating check mark
https://github.com/cdflynn/checkview
android android-library android-ui
Last synced: 3 months ago
JSON representation
An animating check mark
- Host: GitHub
- URL: https://github.com/cdflynn/checkview
- Owner: cdflynn
- License: other
- Created: 2017-02-25T20:03:17.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2022-03-16T15:00:30.000Z (over 2 years ago)
- Last Synced: 2024-06-16T06:38:43.762Z (5 months ago)
- Topics: android, android-library, android-ui
- Language: Java
- Size: 827 KB
- Stars: 86
- Watchers: 3
- Forks: 14
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-github-android-ui - checkview - 动画check标记 (其他)
README
# Check View
An animating check mark![Sample App](https://github.com/cdflynn/checkview/blob/master/sample/img/check_sample.gif?raw=true)
## Usage
Add a `CheckView` to your layout```xml
```Note that you can specify a stroke width and color with xml attributes `checkView_strokeWidth` and `checkView_strokeColor` respectively.
Call `check()`:
```java
mCheckView.check();
```## Install
Add jitpack to your root `build.gradle`
```gradle
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
```Add as a dependency
```gradle
dependencies {
implementation 'com.github.cdflynn:checkview:v1.2'
}
```