├── .gitignore ├── LICENSE ├── README.md ├── ShimmerTextView ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── app │ │ └── shimmertextview │ │ ├── Shimmer.kt │ │ ├── ShimmerDrawable.kt │ │ └── ShimmerTextView.kt │ └── res │ └── values │ └── attrs.xml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── sample │ │ └── shimmertextview │ │ ├── MainActivity.kt │ │ └── OfferActivity.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ ├── background.xml │ ├── ic_bottom_to_top.xml │ ├── ic_launcher_background.xml │ ├── ic_left_to_right.xml │ ├── ic_menu.xml │ ├── ic_right_to_left.xml │ ├── ic_top_to_bottom.xml │ └── shape_menu_button_bg.xml │ ├── font │ ├── poppins_bold.ttf │ └── poppins_regular.ttf │ ├── layout │ ├── activity_main.xml │ ├── activity_offer.xml │ └── custom_tool_bar.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml │ └── xml │ ├── backup_rules.xml │ └── data_extraction_rules.xml ├── art ├── ShimmerTextView.gif └── ShimmerTextViewOffer.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/README.md -------------------------------------------------------------------------------- /ShimmerTextView/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /ShimmerTextView/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/ShimmerTextView/build.gradle -------------------------------------------------------------------------------- /ShimmerTextView/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ShimmerTextView/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/ShimmerTextView/proguard-rules.pro -------------------------------------------------------------------------------- /ShimmerTextView/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/ShimmerTextView/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ShimmerTextView/src/main/java/com/app/shimmertextview/Shimmer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/ShimmerTextView/src/main/java/com/app/shimmertextview/Shimmer.kt -------------------------------------------------------------------------------- /ShimmerTextView/src/main/java/com/app/shimmertextview/ShimmerDrawable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/ShimmerTextView/src/main/java/com/app/shimmertextview/ShimmerDrawable.kt -------------------------------------------------------------------------------- /ShimmerTextView/src/main/java/com/app/shimmertextview/ShimmerTextView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/ShimmerTextView/src/main/java/com/app/shimmertextview/ShimmerTextView.kt -------------------------------------------------------------------------------- /ShimmerTextView/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/ShimmerTextView/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/sample/shimmertextview/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/java/com/sample/shimmertextview/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/sample/shimmertextview/OfferActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/java/com/sample/shimmertextview/OfferActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/drawable/background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_bottom_to_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/drawable/ic_bottom_to_top.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_left_to_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/drawable/ic_left_to_right.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_menu.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/drawable/ic_menu.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_right_to_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/drawable/ic_right_to_left.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_top_to_bottom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/drawable/ic_top_to_bottom.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_menu_button_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/drawable/shape_menu_button_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/font/poppins_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/poppins_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/font/poppins_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_offer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/layout/activity_offer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/custom_tool_bar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/layout/custom_tool_bar.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /art/ShimmerTextView.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/art/ShimmerTextView.gif -------------------------------------------------------------------------------- /art/ShimmerTextViewOffer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/art/ShimmerTextViewOffer.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mindinventory/ShimmerTextView/HEAD/settings.gradle --------------------------------------------------------------------------------