├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── gradle.properties └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── annimon │ │ └── paperstyle │ │ ├── PaperButton.java │ │ ├── PaperProgressBar.java │ │ └── PaperSeekBar.java │ └── res │ └── values │ └── attrs.xml ├── maven_push.gradle ├── sample ├── .gitignore ├── build.gradle └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── annimon │ │ └── paperstyle │ │ └── sample │ │ └── MainActivity.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── layout │ └── activity_main.xml │ ├── values-v11 │ └── styles.xml │ └── values │ ├── strings.xml │ └── styles.xml ├── screenshots ├── paperbutton.gif ├── paperbutton_2.gif ├── paperprogressbar.gif └── paperseekbar.gif └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/library/gradle.properties -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/com/annimon/paperstyle/PaperButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/library/src/main/java/com/annimon/paperstyle/PaperButton.java -------------------------------------------------------------------------------- /library/src/main/java/com/annimon/paperstyle/PaperProgressBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/library/src/main/java/com/annimon/paperstyle/PaperProgressBar.java -------------------------------------------------------------------------------- /library/src/main/java/com/annimon/paperstyle/PaperSeekBar.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/library/src/main/java/com/annimon/paperstyle/PaperSeekBar.java -------------------------------------------------------------------------------- /library/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/library/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /maven_push.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/maven_push.gradle -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/java/com/annimon/paperstyle/sample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/sample/src/main/java/com/annimon/paperstyle/sample/MainActivity.java -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/sample/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/sample/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/sample/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/sample/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/sample/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample/src/main/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/sample/src/main/res/values-v11/styles.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /screenshots/paperbutton.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/screenshots/paperbutton.gif -------------------------------------------------------------------------------- /screenshots/paperbutton_2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/screenshots/paperbutton_2.gif -------------------------------------------------------------------------------- /screenshots/paperprogressbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/screenshots/paperprogressbar.gif -------------------------------------------------------------------------------- /screenshots/paperseekbar.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/screenshots/paperseekbar.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aNNiMON/PaperStyleWidgets/HEAD/settings.gradle --------------------------------------------------------------------------------