Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/huzenan/EasyGestureUnlock
A light gesture unlock view for Android.
https://github.com/huzenan/EasyGestureUnlock
Last synced: 2 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 (about 8 years ago)
- Default Branch: master
- Last Pushed: 2016-11-07T10:44:06.000Z (about 8 years ago)
- Last Synced: 2024-08-02T01:25:18.962Z (6 months 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
![EasyGestureUnlock](https://github.com/huzenan/EasyGestureUnlock/blob/master/screenshots/guv.gif)
## 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;
}
});
```