├── .gitignore ├── .idea ├── codeStyles │ └── Project.xml ├── compiler.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── lcw │ │ └── view │ │ └── MainActivity.java │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── layout │ └── activity_main.xml │ ├── menu │ └── menu_main.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.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 │ ├── background.jpg │ ├── ic_launcher.png │ ├── ic_launcher_round.png │ ├── icon.png │ ├── icon_delete.png │ ├── sticker_01.png │ ├── sticker_02.png │ ├── sticker_03.png │ └── sticker_04.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot └── stickerview.gif ├── settings.gradle └── stickerlibrary ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml ├── java └── com │ └── lcw │ └── library │ └── stickerview │ ├── BaseSticker.java │ ├── ISupportOperation.java │ ├── Sticker.java │ ├── StickerLayout.java │ └── StickerManager.java └── res ├── mipmap-hdpi └── ic_launcher.png ├── mipmap-mdpi └── ic_launcher.png ├── mipmap-xhdpi └── ic_launcher.png ├── mipmap-xxhdpi ├── ic_launcher.png ├── icon.png └── icon_delete.png ├── mipmap-xxxhdpi └── ic_launcher.png └── values └── strings.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/lcw/view/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/java/com/lcw/view/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/menu/menu_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-xxhdpi/background.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/icon_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-xxhdpi/icon_delete.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/sticker_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-xxhdpi/sticker_01.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/sticker_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-xxhdpi/sticker_02.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/sticker_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-xxhdpi/sticker_03.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/sticker_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-xxhdpi/sticker_04.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshot/stickerview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/screenshot/stickerview.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':stickerlibrary' 2 | -------------------------------------------------------------------------------- /stickerlibrary/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /stickerlibrary/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/stickerlibrary/build.gradle -------------------------------------------------------------------------------- /stickerlibrary/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/stickerlibrary/proguard-rules.pro -------------------------------------------------------------------------------- /stickerlibrary/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/stickerlibrary/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /stickerlibrary/src/main/java/com/lcw/library/stickerview/BaseSticker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/stickerlibrary/src/main/java/com/lcw/library/stickerview/BaseSticker.java -------------------------------------------------------------------------------- /stickerlibrary/src/main/java/com/lcw/library/stickerview/ISupportOperation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/stickerlibrary/src/main/java/com/lcw/library/stickerview/ISupportOperation.java -------------------------------------------------------------------------------- /stickerlibrary/src/main/java/com/lcw/library/stickerview/Sticker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/stickerlibrary/src/main/java/com/lcw/library/stickerview/Sticker.java -------------------------------------------------------------------------------- /stickerlibrary/src/main/java/com/lcw/library/stickerview/StickerLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/stickerlibrary/src/main/java/com/lcw/library/stickerview/StickerLayout.java -------------------------------------------------------------------------------- /stickerlibrary/src/main/java/com/lcw/library/stickerview/StickerManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/stickerlibrary/src/main/java/com/lcw/library/stickerview/StickerManager.java -------------------------------------------------------------------------------- /stickerlibrary/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/stickerlibrary/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /stickerlibrary/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/stickerlibrary/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /stickerlibrary/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/stickerlibrary/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /stickerlibrary/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/stickerlibrary/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /stickerlibrary/src/main/res/mipmap-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/stickerlibrary/src/main/res/mipmap-xxhdpi/icon.png -------------------------------------------------------------------------------- /stickerlibrary/src/main/res/mipmap-xxhdpi/icon_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/stickerlibrary/src/main/res/mipmap-xxhdpi/icon_delete.png -------------------------------------------------------------------------------- /stickerlibrary/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/stickerlibrary/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /stickerlibrary/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Lichenwei-Dev/StickerView/HEAD/stickerlibrary/src/main/res/values/strings.xml --------------------------------------------------------------------------------