├── .gitignore ├── README.md ├── Samples ├── sample.png ├── step1.png ├── step2.png ├── step3.png ├── step4.png ├── step5.png └── step6.png ├── app ├── .gitignore ├── AndroidManifest.xml ├── build.gradle ├── proguard-rules.pro ├── res │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ ├── drawable │ │ └── ic_launcher_background.xml │ ├── layout │ │ └── activity_main.xml │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ ├── ic_launcher_foreground.png │ │ └── ic_launcher_round.png │ └── values │ │ ├── colors.xml │ │ ├── ic_launcher_background.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── samon │ └── wechatimageslicer │ ├── LiquidCircleView.java │ ├── MainActivity.java │ └── slicer │ ├── BitmapSlicer.java │ ├── FourPicBitmapSlicer.java │ ├── NinePicBitmapSlicer.java │ ├── SixPicBitmapSlicer.java │ ├── ThreePicBitmapSlicer.java │ └── TowPicBitmapSlicer.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/README.md -------------------------------------------------------------------------------- /Samples/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/Samples/sample.png -------------------------------------------------------------------------------- /Samples/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/Samples/step1.png -------------------------------------------------------------------------------- /Samples/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/Samples/step2.png -------------------------------------------------------------------------------- /Samples/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/Samples/step3.png -------------------------------------------------------------------------------- /Samples/step4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/Samples/step4.png -------------------------------------------------------------------------------- /Samples/step5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/Samples/step5.png -------------------------------------------------------------------------------- /Samples/step6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/Samples/step6.png -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/AndroidManifest.xml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /app/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/values/colors.xml -------------------------------------------------------------------------------- /app/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/values/strings.xml -------------------------------------------------------------------------------- /app/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/com/samon/wechatimageslicer/LiquidCircleView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/src/com/samon/wechatimageslicer/LiquidCircleView.java -------------------------------------------------------------------------------- /app/src/com/samon/wechatimageslicer/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/src/com/samon/wechatimageslicer/MainActivity.java -------------------------------------------------------------------------------- /app/src/com/samon/wechatimageslicer/slicer/BitmapSlicer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/src/com/samon/wechatimageslicer/slicer/BitmapSlicer.java -------------------------------------------------------------------------------- /app/src/com/samon/wechatimageslicer/slicer/FourPicBitmapSlicer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/src/com/samon/wechatimageslicer/slicer/FourPicBitmapSlicer.java -------------------------------------------------------------------------------- /app/src/com/samon/wechatimageslicer/slicer/NinePicBitmapSlicer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/src/com/samon/wechatimageslicer/slicer/NinePicBitmapSlicer.java -------------------------------------------------------------------------------- /app/src/com/samon/wechatimageslicer/slicer/SixPicBitmapSlicer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/src/com/samon/wechatimageslicer/slicer/SixPicBitmapSlicer.java -------------------------------------------------------------------------------- /app/src/com/samon/wechatimageslicer/slicer/ThreePicBitmapSlicer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/src/com/samon/wechatimageslicer/slicer/ThreePicBitmapSlicer.java -------------------------------------------------------------------------------- /app/src/com/samon/wechatimageslicer/slicer/TowPicBitmapSlicer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/app/src/com/samon/wechatimageslicer/slicer/TowPicBitmapSlicer.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xushanmeng/WechatImageSlicer/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------