├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── sackcentury │ │ └── shinebutton │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── sackcentury │ │ │ └── shinebutton │ │ │ ├── FragmentDemo.java │ │ │ ├── ListDemoActivity.java │ │ │ └── MainActivity.java │ └── res │ │ ├── anim │ │ ├── fragmentv_slide_bottom_enter.xml │ │ └── fragmentv_slide_top_exit.xml │ │ ├── layout │ │ ├── activity_list_demo.xml │ │ ├── activity_main.xml │ │ ├── common_fragment.xml │ │ ├── dialog.xml │ │ └── list_item.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── sackcentury │ └── shinebutton │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── image ├── demo.gif ├── demo_more_shine.gif ├── demo_shine_others.gif └── demo_small.gif ├── settings.gradle └── shinebuttonlib ├── build.gradle ├── gradle.properties ├── proguard-rules.pro └── src ├── androidTest └── java │ └── com │ └── sackcentury │ └── shinebuttonlib │ └── ApplicationTest.java ├── main ├── AndroidManifest.xml ├── java │ └── com │ │ └── sackcentury │ │ └── shinebuttonlib │ │ ├── PorterImageView.java │ │ ├── PorterShapeImageView.java │ │ ├── ShineAnimator.java │ │ ├── ShineButton.java │ │ ├── ShineView.java │ │ └── listener │ │ └── SimpleAnimatorListener.java └── res │ ├── menu │ └── main_menu.xml │ ├── raw │ ├── heart.png │ ├── like.png │ ├── smile.png │ └── star.png │ └── values │ ├── attrs.xml │ └── strings.xml └── test └── java └── com └── sackcentury └── shinebuttonlib └── ExampleUnitTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/sackcentury/shinebutton/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/androidTest/java/com/sackcentury/shinebutton/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/sackcentury/shinebutton/FragmentDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/java/com/sackcentury/shinebutton/FragmentDemo.java -------------------------------------------------------------------------------- /app/src/main/java/com/sackcentury/shinebutton/ListDemoActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/java/com/sackcentury/shinebutton/ListDemoActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/sackcentury/shinebutton/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/java/com/sackcentury/shinebutton/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/anim/fragmentv_slide_bottom_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/res/anim/fragmentv_slide_bottom_enter.xml -------------------------------------------------------------------------------- /app/src/main/res/anim/fragmentv_slide_top_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/res/anim/fragmentv_slide_top_exit.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_list_demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/res/layout/activity_list_demo.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/common_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/res/layout/common_fragment.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/dialog.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/res/layout/dialog.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/res/layout/list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/sackcentury/shinebutton/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/app/src/test/java/com/sackcentury/shinebutton/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/gradlew.bat -------------------------------------------------------------------------------- /image/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/image/demo.gif -------------------------------------------------------------------------------- /image/demo_more_shine.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/image/demo_more_shine.gif -------------------------------------------------------------------------------- /image/demo_shine_others.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/image/demo_shine_others.gif -------------------------------------------------------------------------------- /image/demo_small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/image/demo_small.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':shinebuttonlib' 2 | -------------------------------------------------------------------------------- /shinebuttonlib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/build.gradle -------------------------------------------------------------------------------- /shinebuttonlib/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/gradle.properties -------------------------------------------------------------------------------- /shinebuttonlib/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/proguard-rules.pro -------------------------------------------------------------------------------- /shinebuttonlib/src/androidTest/java/com/sackcentury/shinebuttonlib/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/src/androidTest/java/com/sackcentury/shinebuttonlib/ApplicationTest.java -------------------------------------------------------------------------------- /shinebuttonlib/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /shinebuttonlib/src/main/java/com/sackcentury/shinebuttonlib/PorterImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/src/main/java/com/sackcentury/shinebuttonlib/PorterImageView.java -------------------------------------------------------------------------------- /shinebuttonlib/src/main/java/com/sackcentury/shinebuttonlib/PorterShapeImageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/src/main/java/com/sackcentury/shinebuttonlib/PorterShapeImageView.java -------------------------------------------------------------------------------- /shinebuttonlib/src/main/java/com/sackcentury/shinebuttonlib/ShineAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/src/main/java/com/sackcentury/shinebuttonlib/ShineAnimator.java -------------------------------------------------------------------------------- /shinebuttonlib/src/main/java/com/sackcentury/shinebuttonlib/ShineButton.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/src/main/java/com/sackcentury/shinebuttonlib/ShineButton.java -------------------------------------------------------------------------------- /shinebuttonlib/src/main/java/com/sackcentury/shinebuttonlib/ShineView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/src/main/java/com/sackcentury/shinebuttonlib/ShineView.java -------------------------------------------------------------------------------- /shinebuttonlib/src/main/java/com/sackcentury/shinebuttonlib/listener/SimpleAnimatorListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/src/main/java/com/sackcentury/shinebuttonlib/listener/SimpleAnimatorListener.java -------------------------------------------------------------------------------- /shinebuttonlib/src/main/res/menu/main_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/src/main/res/menu/main_menu.xml -------------------------------------------------------------------------------- /shinebuttonlib/src/main/res/raw/heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/src/main/res/raw/heart.png -------------------------------------------------------------------------------- /shinebuttonlib/src/main/res/raw/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/src/main/res/raw/like.png -------------------------------------------------------------------------------- /shinebuttonlib/src/main/res/raw/smile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/src/main/res/raw/smile.png -------------------------------------------------------------------------------- /shinebuttonlib/src/main/res/raw/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/src/main/res/raw/star.png -------------------------------------------------------------------------------- /shinebuttonlib/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /shinebuttonlib/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /shinebuttonlib/src/test/java/com/sackcentury/shinebuttonlib/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ChadCSong/ShineButton/HEAD/shinebuttonlib/src/test/java/com/sackcentury/shinebuttonlib/ExampleUnitTest.java --------------------------------------------------------------------------------