├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── runConfigurations.xml └── vcs.xml ├── BalloonWindow ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── ht │ │ └── balloonwindow │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── ht │ │ │ └── balloonwindow │ │ │ ├── BalloonWindow.kt │ │ │ ├── BalloonWindowListener.kt │ │ │ └── NumberUtils.kt │ └── res │ │ ├── drawable │ │ ├── bg_blue_30a4ff_round.xml │ │ ├── ic_balloon_arrow_right.xml │ │ └── ic_balloon_arrow_top.xml │ │ ├── layout │ │ └── view_balloon.xml │ │ └── values │ │ ├── colors.xml │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── ht │ └── balloonwindow │ └── ExampleUnitTest.java ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── ht │ │ └── example │ │ └── balloonwindow │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── ht │ │ │ └── example │ │ │ └── balloonwindow │ │ │ └── MainActivity.kt │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── bg_blue_30a4ff_round_20.xml │ │ └── 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 │ └── com │ └── ht │ └── example │ └── balloonwindow │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshots └── demo.gif └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /BalloonWindow/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /BalloonWindow/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/BalloonWindow/build.gradle -------------------------------------------------------------------------------- /BalloonWindow/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/BalloonWindow/proguard-rules.pro -------------------------------------------------------------------------------- /BalloonWindow/src/androidTest/java/com/ht/balloonwindow/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/BalloonWindow/src/androidTest/java/com/ht/balloonwindow/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /BalloonWindow/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/BalloonWindow/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /BalloonWindow/src/main/java/com/ht/balloonwindow/BalloonWindow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/BalloonWindow/src/main/java/com/ht/balloonwindow/BalloonWindow.kt -------------------------------------------------------------------------------- /BalloonWindow/src/main/java/com/ht/balloonwindow/BalloonWindowListener.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/BalloonWindow/src/main/java/com/ht/balloonwindow/BalloonWindowListener.kt -------------------------------------------------------------------------------- /BalloonWindow/src/main/java/com/ht/balloonwindow/NumberUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/BalloonWindow/src/main/java/com/ht/balloonwindow/NumberUtils.kt -------------------------------------------------------------------------------- /BalloonWindow/src/main/res/drawable/bg_blue_30a4ff_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/BalloonWindow/src/main/res/drawable/bg_blue_30a4ff_round.xml -------------------------------------------------------------------------------- /BalloonWindow/src/main/res/drawable/ic_balloon_arrow_right.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/BalloonWindow/src/main/res/drawable/ic_balloon_arrow_right.xml -------------------------------------------------------------------------------- /BalloonWindow/src/main/res/drawable/ic_balloon_arrow_top.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/BalloonWindow/src/main/res/drawable/ic_balloon_arrow_top.xml -------------------------------------------------------------------------------- /BalloonWindow/src/main/res/layout/view_balloon.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/BalloonWindow/src/main/res/layout/view_balloon.xml -------------------------------------------------------------------------------- /BalloonWindow/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/BalloonWindow/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /BalloonWindow/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/BalloonWindow/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /BalloonWindow/src/test/java/com/ht/balloonwindow/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/BalloonWindow/src/test/java/com/ht/balloonwindow/ExampleUnitTest.java -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/ht/example/balloonwindow/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/androidTest/java/com/ht/example/balloonwindow/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/ht/example/balloonwindow/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/java/com/ht/example/balloonwindow/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/bg_blue_30a4ff_round_20.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/res/drawable/bg_blue_30a4ff_round_20.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/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/hyuntae0117/android-BalloonWindow/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/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/ht/example/balloonwindow/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/app/src/test/java/com/ht/example/balloonwindow/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshots/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyuntae0117/android-BalloonWindow/HEAD/screenshots/demo.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':BalloonWindow' 2 | --------------------------------------------------------------------------------