├── .DS_Store ├── .classpath ├── .gitignore ├── .project ├── AndroidManifest.xml ├── LICENSE.md ├── README.md ├── assets ├── .DS_Store └── fonts │ ├── .DS_Store │ └── XpressiveBold.ttf ├── ic_launcher-web.png ├── libs └── android-support-v4.jar ├── lint.xml ├── proguard-project.txt ├── project.properties ├── res ├── .DS_Store ├── drawable-hdpi │ └── ic_launcher.png ├── drawable-ldpi │ └── ic_launcher.png ├── drawable-mdpi │ ├── denim.png │ ├── ic_launcher.png │ ├── pinstriped_suit.png │ └── stressed_linen.png ├── drawable-xhdpi │ └── ic_launcher.png ├── drawable │ ├── back.xml │ ├── button_gradient_selector.xml │ └── pinstripe_repeating.xml ├── layout │ ├── activity_pin_entry_view.xml │ └── activity_pin_protected_activity.xml ├── menu │ └── activity_pin_entry_view.xml ├── values-v11 │ └── styles.xml ├── values-v14 │ └── styles.xml └── values │ ├── strings.xml │ └── styles.xml └── src └── com └── ultimasquare └── pinview ├── ErrorAlert.java ├── PinEntryView.java └── PinProtectedActivity.java /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/.DS_Store -------------------------------------------------------------------------------- /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/.project -------------------------------------------------------------------------------- /AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/AndroidManifest.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/README.md -------------------------------------------------------------------------------- /assets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/assets/.DS_Store -------------------------------------------------------------------------------- /assets/fonts/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/assets/fonts/.DS_Store -------------------------------------------------------------------------------- /assets/fonts/XpressiveBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/assets/fonts/XpressiveBold.ttf -------------------------------------------------------------------------------- /ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/ic_launcher-web.png -------------------------------------------------------------------------------- /libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/libs/android-support-v4.jar -------------------------------------------------------------------------------- /lint.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/lint.xml -------------------------------------------------------------------------------- /proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/proguard-project.txt -------------------------------------------------------------------------------- /project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/project.properties -------------------------------------------------------------------------------- /res/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/.DS_Store -------------------------------------------------------------------------------- /res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/denim.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/drawable-mdpi/denim.png -------------------------------------------------------------------------------- /res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable-mdpi/pinstriped_suit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/drawable-mdpi/pinstriped_suit.png -------------------------------------------------------------------------------- /res/drawable-mdpi/stressed_linen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/drawable-mdpi/stressed_linen.png -------------------------------------------------------------------------------- /res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /res/drawable/back.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/drawable/back.xml -------------------------------------------------------------------------------- /res/drawable/button_gradient_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/drawable/button_gradient_selector.xml -------------------------------------------------------------------------------- /res/drawable/pinstripe_repeating.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/drawable/pinstripe_repeating.xml -------------------------------------------------------------------------------- /res/layout/activity_pin_entry_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/layout/activity_pin_entry_view.xml -------------------------------------------------------------------------------- /res/layout/activity_pin_protected_activity.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/layout/activity_pin_protected_activity.xml -------------------------------------------------------------------------------- /res/menu/activity_pin_entry_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/menu/activity_pin_entry_view.xml -------------------------------------------------------------------------------- /res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/values-v11/styles.xml -------------------------------------------------------------------------------- /res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/values-v14/styles.xml -------------------------------------------------------------------------------- /res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/values/strings.xml -------------------------------------------------------------------------------- /res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/res/values/styles.xml -------------------------------------------------------------------------------- /src/com/ultimasquare/pinview/ErrorAlert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/src/com/ultimasquare/pinview/ErrorAlert.java -------------------------------------------------------------------------------- /src/com/ultimasquare/pinview/PinEntryView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/src/com/ultimasquare/pinview/PinEntryView.java -------------------------------------------------------------------------------- /src/com/ultimasquare/pinview/PinProtectedActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chinloong/Android-PinView/HEAD/src/com/ultimasquare/pinview/PinProtectedActivity.java --------------------------------------------------------------------------------