https://github.com/cdflynn/checkview
  
  
    An animating check mark 
    https://github.com/cdflynn/checkview
  
android android-library android-ui
        Last synced: 7 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 8 years ago)
 - Default Branch: master
 - Last Pushed: 2022-03-16T15:00:30.000Z (over 3 years ago)
 - Last Synced: 2024-11-09T18:43:22.881Z (12 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

## 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'
	}
```