├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml └── vcs.xml ├── 1.gif ├── Android_custom_ratingbarview.iml ├── README.md ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── libs │ ├── AndroidEasingFunctions-1.0.0.jar │ ├── AndroidViewAnimations-1.1.3.jar │ └── NineOldAndroid-2.4.0.jar ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── bao │ │ └── android_custom_ratingbarview │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── bao │ │ └── android_custom_ratingbarview │ │ ├── MainActivity.java │ │ └── RatingBarView.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── drawable │ ├── icon_star_empty.png │ └── icon_star_fill.png │ ├── layout │ └── activity_main.xml │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── attrs.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | Android_custom_ratingbarview -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/1.gif -------------------------------------------------------------------------------- /Android_custom_ratingbarview.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/Android_custom_ratingbarview.iml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/libs/AndroidEasingFunctions-1.0.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/libs/AndroidEasingFunctions-1.0.0.jar -------------------------------------------------------------------------------- /app/libs/AndroidViewAnimations-1.1.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/libs/AndroidViewAnimations-1.1.3.jar -------------------------------------------------------------------------------- /app/libs/NineOldAndroid-2.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/libs/NineOldAndroid-2.4.0.jar -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/bao/android_custom_ratingbarview/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/src/androidTest/java/com/bao/android_custom_ratingbarview/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/bao/android_custom_ratingbarview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/src/main/java/com/bao/android_custom_ratingbarview/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/bao/android_custom_ratingbarview/RatingBarView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/src/main/java/com/bao/android_custom_ratingbarview/RatingBarView.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon_star_empty.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/src/main/res/drawable/icon_star_empty.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/icon_star_fill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/src/main/res/drawable/icon_star_fill.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LoranWong/Android_custom_ratingbarview/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------