├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── markdown-navigator.xml ├── markdown-navigator │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── hencoder │ │ └── hencoderpracticedraw2 │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── hencoder │ │ │ └── hencoderpracticedraw2 │ │ │ ├── MainActivity.java │ │ │ ├── PageFragment.java │ │ │ ├── practice │ │ │ ├── Practice01LinearGradientView.java │ │ │ ├── Practice02RadialGradientView.java │ │ │ ├── Practice03SweepGradientView.java │ │ │ ├── Practice04BitmapShaderView.java │ │ │ ├── Practice05ComposeShaderView.java │ │ │ ├── Practice06LightingColorFilterView.java │ │ │ ├── Practice07ColorMatrixColorFilterView.java │ │ │ ├── Practice08XfermodeView.java │ │ │ ├── Practice09StrokeCapView.java │ │ │ ├── Practice10StrokeJoinView.java │ │ │ ├── Practice11StrokeMiterView.java │ │ │ ├── Practice12PathEffectView.java │ │ │ ├── Practice13ShadowLayerView.java │ │ │ ├── Practice14MaskFilterView.java │ │ │ ├── Practice15FillPathView.java │ │ │ └── Practice16TextPathView.java │ │ │ └── sample │ │ │ ├── Sample01LinearGradientView.java │ │ │ ├── Sample02RadialGradientView.java │ │ │ ├── Sample03SweepGradientView.java │ │ │ ├── Sample04BitmapShaderView.java │ │ │ ├── Sample05ComposeShaderView.java │ │ │ ├── Sample06LightingColorFilterView.java │ │ │ ├── Sample07ColorMatrixColorFilterView.java │ │ │ ├── Sample08XfermodeView.java │ │ │ ├── Sample09StrokeCapView.java │ │ │ ├── Sample10StrokeJoinView.java │ │ │ ├── Sample11StrokeMiterView.java │ │ │ ├── Sample12PathEffectView.java │ │ │ ├── Sample13ShadowLayerView.java │ │ │ ├── Sample14MaskFilterView.java │ │ │ ├── Sample15FillPathView.java │ │ │ └── Sample16TextPathView.java │ └── res │ │ ├── drawable-xxhdpi │ │ ├── batman.jpg │ │ ├── batman_logo.png │ │ └── what_the_fuck.jpg │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── fragment_page.xml │ │ ├── practice_bitmap_shader.xml │ │ ├── practice_color_matrix_color_filter.xml │ │ ├── practice_compose_shader.xml │ │ ├── practice_fill_path.xml │ │ ├── practice_lighting_color_filter.xml │ │ ├── practice_linear_gradient.xml │ │ ├── practice_mask_filter.xml │ │ ├── practice_path_effect.xml │ │ ├── practice_radial_gradient.xml │ │ ├── practice_shadow_layer.xml │ │ ├── practice_stroke_cap.xml │ │ ├── practice_stroke_join.xml │ │ ├── practice_stroke_miter.xml │ │ ├── practice_sweep_gradient.xml │ │ ├── practice_text_path.xml │ │ ├── practice_xfermode.xml │ │ ├── sample_bitmap_shader.xml │ │ ├── sample_color_mask_color_filter.xml │ │ ├── sample_compose_shader.xml │ │ ├── sample_fill_path.xml │ │ ├── sample_lighting_color_filter.xml │ │ ├── sample_linear_gradient.xml │ │ ├── sample_mask_filter.xml │ │ ├── sample_path_effect.xml │ │ ├── sample_radial_gradient.xml │ │ ├── sample_shadow_layer.xml │ │ ├── sample_stroke_cap.xml │ │ ├── sample_stroke_join.xml │ │ ├── sample_stroke_miter.xml │ │ ├── sample_sweep_gradient.xml │ │ ├── sample_text_path.xml │ │ └── sample_xfermode.xml │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── hencoder │ └── hencoderpracticedraw2 │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── images ├── icon.png ├── preview.png ├── preview_after.png ├── project_practice.png └── project_sample.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/.idea/markdown-navigator.xml -------------------------------------------------------------------------------- /.idea/markdown-navigator/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/.idea/markdown-navigator/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/hencoder/hencoderpracticedraw2/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/androidTest/java/com/hencoder/hencoderpracticedraw2/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/PageFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/PageFragment.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice01LinearGradientView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice01LinearGradientView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice02RadialGradientView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice02RadialGradientView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice03SweepGradientView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice03SweepGradientView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice04BitmapShaderView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice04BitmapShaderView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice05ComposeShaderView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice05ComposeShaderView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice06LightingColorFilterView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice06LightingColorFilterView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice07ColorMatrixColorFilterView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice07ColorMatrixColorFilterView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice08XfermodeView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice08XfermodeView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice09StrokeCapView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice09StrokeCapView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice10StrokeJoinView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice10StrokeJoinView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice11StrokeMiterView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice11StrokeMiterView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice12PathEffectView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice12PathEffectView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice13ShadowLayerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice13ShadowLayerView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice14MaskFilterView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice14MaskFilterView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice15FillPathView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice15FillPathView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice16TextPathView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/practice/Practice16TextPathView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample01LinearGradientView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample01LinearGradientView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample02RadialGradientView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample02RadialGradientView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample03SweepGradientView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample03SweepGradientView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample04BitmapShaderView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample04BitmapShaderView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample05ComposeShaderView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample05ComposeShaderView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample06LightingColorFilterView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample06LightingColorFilterView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample07ColorMatrixColorFilterView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample07ColorMatrixColorFilterView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample08XfermodeView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample08XfermodeView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample09StrokeCapView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample09StrokeCapView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample10StrokeJoinView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample10StrokeJoinView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample11StrokeMiterView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample11StrokeMiterView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample12PathEffectView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample12PathEffectView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample13ShadowLayerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample13ShadowLayerView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample14MaskFilterView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample14MaskFilterView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample15FillPathView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample15FillPathView.java -------------------------------------------------------------------------------- /app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample16TextPathView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/java/com/hencoder/hencoderpracticedraw2/sample/Sample16TextPathView.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/batman.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/drawable-xxhdpi/batman.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/batman_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/drawable-xxhdpi/batman_logo.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/what_the_fuck.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/drawable-xxhdpi/what_the_fuck.jpg -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/fragment_page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/fragment_page.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/practice_bitmap_shader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/practice_bitmap_shader.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/practice_color_matrix_color_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/practice_color_matrix_color_filter.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/practice_compose_shader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/practice_compose_shader.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/practice_fill_path.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/practice_fill_path.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/practice_lighting_color_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/practice_lighting_color_filter.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/practice_linear_gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/practice_linear_gradient.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/practice_mask_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/practice_mask_filter.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/practice_path_effect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/practice_path_effect.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/practice_radial_gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/practice_radial_gradient.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/practice_shadow_layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/practice_shadow_layer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/practice_stroke_cap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/practice_stroke_cap.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/practice_stroke_join.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/practice_stroke_join.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/practice_stroke_miter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/practice_stroke_miter.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/practice_sweep_gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/practice_sweep_gradient.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/practice_text_path.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/practice_text_path.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/practice_xfermode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/practice_xfermode.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sample_bitmap_shader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/sample_bitmap_shader.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sample_color_mask_color_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/sample_color_mask_color_filter.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sample_compose_shader.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/sample_compose_shader.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sample_fill_path.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/sample_fill_path.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sample_lighting_color_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/sample_lighting_color_filter.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sample_linear_gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/sample_linear_gradient.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sample_mask_filter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/sample_mask_filter.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sample_path_effect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/sample_path_effect.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sample_radial_gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/sample_radial_gradient.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sample_shadow_layer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/sample_shadow_layer.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sample_stroke_cap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/sample_stroke_cap.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sample_stroke_join.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/sample_stroke_join.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sample_stroke_miter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/sample_stroke_miter.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sample_sweep_gradient.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/sample_sweep_gradient.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sample_text_path.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/sample_text_path.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/sample_xfermode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/layout/sample_xfermode.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/hencoder/hencoderpracticedraw2/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/app/src/test/java/com/hencoder/hencoderpracticedraw2/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/gradlew.bat -------------------------------------------------------------------------------- /images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/images/icon.png -------------------------------------------------------------------------------- /images/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/images/preview.png -------------------------------------------------------------------------------- /images/preview_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/images/preview_after.png -------------------------------------------------------------------------------- /images/project_practice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/images/project_practice.png -------------------------------------------------------------------------------- /images/project_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hencoder/PracticeDraw2/HEAD/images/project_sample.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------