├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── release │ ├── app-release.apk │ └── output.json └── src │ ├── androidTest │ └── java │ │ └── tech │ │ └── nicesky │ │ └── balloonpickerdemo │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── tech │ │ │ └── nicesky │ │ │ └── balloonpickerdemo │ │ │ └── MainActivity.kt │ └── 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_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── tech │ └── nicesky │ └── balloonpickerdemo │ └── ExampleUnitTest.kt ├── balloonpicker ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── tech │ │ └── nicesky │ │ └── balloonpicker │ │ ├── BalloonAnimSet.kt │ │ ├── BalloonPickerListener.kt │ │ ├── BalloonPickerView.kt │ │ ├── BalloonView.kt │ │ ├── DpUtil.kt │ │ ├── TrackLayerListener.kt │ │ └── TrackLayerView.kt │ └── res │ ├── anim │ ├── balloon_scale_enter.xml │ └── balloon_scale_exit.xml │ ├── drawable │ ├── ic_keyboard_arrow_right_black_24dp.xml │ └── ic_wb_cloudy_black_24dp.xml │ └── values │ ├── colors.xml │ └── strings.xml ├── blogpost ├── image │ ├── balloon.svg │ ├── balloonScale.gif │ ├── balloonfollow.gif │ ├── balloonrotation.gif │ ├── balloonshowanim.gif │ ├── preview.gif │ ├── scaleanim.gif │ ├── touchmotion.gif │ ├── 拖拽气球.gif │ └── 绘制基线和触摸块.png ├── key │ ├── release.jks │ └── release │ │ ├── app-release.apk │ │ └── output.json └── post.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/release/app-release.apk -------------------------------------------------------------------------------- /app/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/release/output.json -------------------------------------------------------------------------------- /app/src/androidTest/java/tech/nicesky/balloonpickerdemo/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/androidTest/java/tech/nicesky/balloonpickerdemo/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/tech/nicesky/balloonpickerdemo/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/main/java/tech/nicesky/balloonpickerdemo/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/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/fairytale110/BalloonPicker/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/fairytale110/BalloonPicker/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/tech/nicesky/balloonpickerdemo/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/app/src/test/java/tech/nicesky/balloonpickerdemo/ExampleUnitTest.kt -------------------------------------------------------------------------------- /balloonpicker/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /balloonpicker/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/balloonpicker/build.gradle -------------------------------------------------------------------------------- /balloonpicker/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /balloonpicker/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/balloonpicker/proguard-rules.pro -------------------------------------------------------------------------------- /balloonpicker/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/balloonpicker/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /balloonpicker/src/main/java/tech/nicesky/balloonpicker/BalloonAnimSet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/balloonpicker/src/main/java/tech/nicesky/balloonpicker/BalloonAnimSet.kt -------------------------------------------------------------------------------- /balloonpicker/src/main/java/tech/nicesky/balloonpicker/BalloonPickerListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/balloonpicker/src/main/java/tech/nicesky/balloonpicker/BalloonPickerListener.kt -------------------------------------------------------------------------------- /balloonpicker/src/main/java/tech/nicesky/balloonpicker/BalloonPickerView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/balloonpicker/src/main/java/tech/nicesky/balloonpicker/BalloonPickerView.kt -------------------------------------------------------------------------------- /balloonpicker/src/main/java/tech/nicesky/balloonpicker/BalloonView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/balloonpicker/src/main/java/tech/nicesky/balloonpicker/BalloonView.kt -------------------------------------------------------------------------------- /balloonpicker/src/main/java/tech/nicesky/balloonpicker/DpUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/balloonpicker/src/main/java/tech/nicesky/balloonpicker/DpUtil.kt -------------------------------------------------------------------------------- /balloonpicker/src/main/java/tech/nicesky/balloonpicker/TrackLayerListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/balloonpicker/src/main/java/tech/nicesky/balloonpicker/TrackLayerListener.kt -------------------------------------------------------------------------------- /balloonpicker/src/main/java/tech/nicesky/balloonpicker/TrackLayerView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/balloonpicker/src/main/java/tech/nicesky/balloonpicker/TrackLayerView.kt -------------------------------------------------------------------------------- /balloonpicker/src/main/res/anim/balloon_scale_enter.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/balloonpicker/src/main/res/anim/balloon_scale_enter.xml -------------------------------------------------------------------------------- /balloonpicker/src/main/res/anim/balloon_scale_exit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/balloonpicker/src/main/res/anim/balloon_scale_exit.xml -------------------------------------------------------------------------------- /balloonpicker/src/main/res/drawable/ic_keyboard_arrow_right_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/balloonpicker/src/main/res/drawable/ic_keyboard_arrow_right_black_24dp.xml -------------------------------------------------------------------------------- /balloonpicker/src/main/res/drawable/ic_wb_cloudy_black_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/balloonpicker/src/main/res/drawable/ic_wb_cloudy_black_24dp.xml -------------------------------------------------------------------------------- /balloonpicker/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/balloonpicker/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /balloonpicker/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/balloonpicker/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /blogpost/image/balloon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/blogpost/image/balloon.svg -------------------------------------------------------------------------------- /blogpost/image/balloonScale.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/blogpost/image/balloonScale.gif -------------------------------------------------------------------------------- /blogpost/image/balloonfollow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/blogpost/image/balloonfollow.gif -------------------------------------------------------------------------------- /blogpost/image/balloonrotation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/blogpost/image/balloonrotation.gif -------------------------------------------------------------------------------- /blogpost/image/balloonshowanim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/blogpost/image/balloonshowanim.gif -------------------------------------------------------------------------------- /blogpost/image/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/blogpost/image/preview.gif -------------------------------------------------------------------------------- /blogpost/image/scaleanim.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/blogpost/image/scaleanim.gif -------------------------------------------------------------------------------- /blogpost/image/touchmotion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/blogpost/image/touchmotion.gif -------------------------------------------------------------------------------- /blogpost/image/拖拽气球.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/blogpost/image/拖拽气球.gif -------------------------------------------------------------------------------- /blogpost/image/绘制基线和触摸块.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/blogpost/image/绘制基线和触摸块.png -------------------------------------------------------------------------------- /blogpost/key/release.jks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/blogpost/key/release.jks -------------------------------------------------------------------------------- /blogpost/key/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/blogpost/key/release/app-release.apk -------------------------------------------------------------------------------- /blogpost/key/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/blogpost/key/release/output.json -------------------------------------------------------------------------------- /blogpost/post.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/blogpost/post.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fairytale110/BalloonPicker/HEAD/settings.gradle --------------------------------------------------------------------------------