├── .gitignore ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── xw │ │ └── sample │ │ └── vectorcompattextview │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── xw │ │ │ └── sample │ │ │ └── vectorcompattextview │ │ │ └── MainActivity.java │ └── res │ │ ├── drawable │ │ ├── selector_drawable_day_night_mode.xml │ │ ├── selector_drawable_tab.xml │ │ ├── selector_text_color_day_night_mode.xml │ │ ├── selector_text_color_tab.xml │ │ ├── shape_rect_solid_gray.xml │ │ ├── shape_rect_solid_red.xml │ │ ├── shape_stroke_bg_gray.xml │ │ ├── svg_ic_arrow_right.xml │ │ ├── svg_ic_boy.xml │ │ ├── svg_ic_day_mode.xml │ │ ├── svg_ic_fx.xml │ │ ├── svg_ic_girl.xml │ │ ├── svg_ic_github.xml │ │ ├── svg_ic_line.xml │ │ ├── svg_ic_night_mode.xml │ │ ├── svg_ic_right.xml │ │ ├── svg_ic_twitter.xml │ │ ├── svg_ic_txl.xml │ │ ├── svg_ic_user.xml │ │ ├── svg_ic_w.xml │ │ ├── svg_ic_wechat.xml │ │ ├── svg_ic_weibo.xml │ │ └── svg_ic_wx.xml │ │ ├── layout │ │ └── activity_main.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── xw │ └── sample │ └── vectorcompattextview │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot ├── demo5.jpg └── demo6.gif ├── settings.gradle └── vectorcompattextview ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml ├── java └── com │ └── xw │ └── repo │ └── VectorCompatTextView.java └── res └── values └── attrs.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/xw/sample/vectorcompattextview/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/androidTest/java/com/xw/sample/vectorcompattextview/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/xw/sample/vectorcompattextview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/java/com/xw/sample/vectorcompattextview/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_drawable_day_night_mode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/selector_drawable_day_night_mode.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_drawable_tab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/selector_drawable_tab.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_text_color_day_night_mode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/selector_text_color_day_night_mode.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector_text_color_tab.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/selector_text_color_tab.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_rect_solid_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/shape_rect_solid_gray.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_rect_solid_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/shape_rect_solid_red.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/shape_stroke_bg_gray.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/shape_stroke_bg_gray.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/svg_ic_arrow_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/svg_ic_arrow_right.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/svg_ic_boy.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/svg_ic_boy.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/svg_ic_day_mode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/svg_ic_day_mode.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/svg_ic_fx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/svg_ic_fx.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/svg_ic_girl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/svg_ic_girl.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/svg_ic_github.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/svg_ic_github.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/svg_ic_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/svg_ic_line.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/svg_ic_night_mode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/svg_ic_night_mode.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/svg_ic_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/svg_ic_right.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/svg_ic_twitter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/svg_ic_twitter.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/svg_ic_txl.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/svg_ic_txl.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/svg_ic_user.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/svg_ic_user.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/svg_ic_w.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/svg_ic_w.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/svg_ic_wechat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/svg_ic_wechat.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/svg_ic_weibo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/svg_ic_weibo.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/svg_ic_wx.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/drawable/svg_ic_wx.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/xw/sample/vectorcompattextview/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/app/src/test/java/com/xw/sample/vectorcompattextview/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshot/demo5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/screenshot/demo5.jpg -------------------------------------------------------------------------------- /screenshot/demo6.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/screenshot/demo6.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':vectorcompattextview' 2 | -------------------------------------------------------------------------------- /vectorcompattextview/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /vectorcompattextview/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/vectorcompattextview/build.gradle -------------------------------------------------------------------------------- /vectorcompattextview/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/vectorcompattextview/proguard-rules.pro -------------------------------------------------------------------------------- /vectorcompattextview/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/vectorcompattextview/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /vectorcompattextview/src/main/java/com/xw/repo/VectorCompatTextView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/vectorcompattextview/src/main/java/com/xw/repo/VectorCompatTextView.java -------------------------------------------------------------------------------- /vectorcompattextview/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/woxingxiao/VectorCompatTextView/HEAD/vectorcompattextview/src/main/res/values/attrs.xml --------------------------------------------------------------------------------