├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── xys │ │ └── vectordemo │ │ ├── LActivity.java │ │ └── VectorCompatActivity.java │ └── res │ ├── animator │ ├── anim_cross_circle1.xml │ ├── anim_cross_circle2.xml │ ├── anim_cross_line.xml │ ├── anim_fivestar_morph.xml │ ├── anim_heart_empty.xml │ ├── anim_heart_full.xml │ ├── anim_left.xml │ ├── anim_path_cross2tick.xml │ ├── anim_path_tick2cross.xml │ ├── anim_right.xml │ ├── anim_searchbar_in.xml │ ├── anim_searchbar_out.xml │ ├── anim_square.xml │ ├── anim_square_color.xml │ └── anim_star.xml │ ├── drawable │ ├── cross.xml │ ├── cross_anim.xml │ ├── fivestar.xml │ ├── fivestat_anim.xml │ ├── heart.xml │ ├── heart_empty_anim.xml │ ├── heart_full_anim.xml │ ├── ic_arrow.xml │ ├── ic_arrow_anim.xml │ ├── path_cross.xml │ ├── path_cross2tick_anim.xml │ ├── path_tick.xml │ ├── path_tick2cross_anim.xml │ ├── searchbar.xml │ ├── searchbar_anim.xml │ ├── selector1.xml │ ├── selector2.xml │ ├── square.xml │ ├── square_anim.xml │ ├── star.xml │ ├── star_anim.xml │ └── test_selector.xml │ ├── layout │ ├── activity_l.xml │ └── activity_pre_l.xml │ ├── menu │ └── menu_main.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 ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── pic └── vector.gif └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/xys/vectordemo/LActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/java/com/xys/vectordemo/LActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/xys/vectordemo/VectorCompatActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/java/com/xys/vectordemo/VectorCompatActivity.java -------------------------------------------------------------------------------- /app/src/main/res/animator/anim_cross_circle1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/animator/anim_cross_circle1.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/anim_cross_circle2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/animator/anim_cross_circle2.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/anim_cross_line.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/animator/anim_cross_line.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/anim_fivestar_morph.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/animator/anim_fivestar_morph.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/anim_heart_empty.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/animator/anim_heart_empty.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/anim_heart_full.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/animator/anim_heart_full.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/anim_left.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/animator/anim_left.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/anim_path_cross2tick.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/animator/anim_path_cross2tick.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/anim_path_tick2cross.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/animator/anim_path_tick2cross.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/anim_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/animator/anim_right.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/anim_searchbar_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/animator/anim_searchbar_in.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/anim_searchbar_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/animator/anim_searchbar_out.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/anim_square.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/animator/anim_square.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/anim_square_color.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/animator/anim_square_color.xml -------------------------------------------------------------------------------- /app/src/main/res/animator/anim_star.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/animator/anim_star.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/cross.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/cross.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/cross_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/cross_anim.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/fivestar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/fivestar.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/fivestat_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/fivestat_anim.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/heart.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/heart.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/heart_empty_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/heart_empty_anim.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/heart_full_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/heart_full_anim.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/ic_arrow.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_arrow_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/ic_arrow_anim.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/path_cross.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/path_cross.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/path_cross2tick_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/path_cross2tick_anim.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/path_tick.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/path_tick.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/path_tick2cross_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/path_tick2cross_anim.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/searchbar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/searchbar.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/searchbar_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/searchbar_anim.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector1.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/selector1.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/selector2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/selector2.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/square.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/square.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/square_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/square_anim.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/star.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/star.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/star_anim.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/star_anim.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/test_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/drawable/test_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_l.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/layout/activity_l.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_pre_l.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/layout/activity_pre_l.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/gradlew.bat -------------------------------------------------------------------------------- /pic/vector.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xuyisheng/VectorDemo/HEAD/pic/vector.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------