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: 1 day ago
JSON representation

A light gesture unlock view for Android.

Lists

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;
}
});
```