https://github.com/huzenan/EasyGestureUnlock
  
  
    A light gesture unlock view for Android. 
    https://github.com/huzenan/EasyGestureUnlock
  
        Last synced: 7 months ago 
        JSON representation
    
A light gesture unlock view for Android.
- Host: GitHub
 - URL: https://github.com/huzenan/EasyGestureUnlock
 - Owner: huzenan
 - License: apache-2.0
 - Created: 2016-11-07T10:25:15.000Z (almost 9 years ago)
 - Default Branch: master
 - Last Pushed: 2016-11-07T10:44:06.000Z (almost 9 years ago)
 - Last Synced: 2024-08-02T01:25:18.962Z (over 1 year ago)
 - Language: Java
 - Size: 435 KB
 - Stars: 35
 - Watchers: 2
 - Forks: 7
 - Open Issues: 0
 - 
            Metadata Files:
            
- Readme: README.md
 - License: LICENSE
 
 
Awesome Lists containing this project
- awesome-github-android-ui - EasyGestureUnlock - 轻量级手势解锁视图 (PinCode)
 
README
          # EasyGestureUnlock
A light gesture unlock view for Android.
## ScreenShots

## Usage
> layout
```xml
    
```
> Activity
```java
    unlockView.setOnUnlockListener(new GestureUnlockView.OnUnlockListener() {
        @Override
        public boolean onUnlockFinished(ArrayList password) {
            boolean success = pswdList.equals(password);
            ...
            unlockView.reset();
            ...
            return success;
        }
    });
```