├── .gitignore ├── LICENSE ├── README.md ├── _config.yml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── ir │ │ └── smartdevelop │ │ └── eram │ │ └── showcaseview │ │ ├── CircleView.java │ │ └── MainActivity.java │ └── 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 ├── demo-flatShowCaseView.apk ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshots ├── Screenshot_2018-01-21-00-51-21.png ├── Screenshot_2018-01-21-00-51-52.png ├── Screenshot_2018-01-21-00-52-43.png ├── Screenshot_2018-01-21-00-54-44.png ├── Screenshot_2018-01-21-00-55-08.png ├── Screenshot_2018-01-24-16-41-38.png ├── Screenshot_2018-01-24-16-52-03.png ├── Screenshot_2018-01-24-16-53-17.png └── sample1.gif ├── settings.gradle └── showcaseviewlib ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml ├── java └── smartdevelop │ └── ir │ └── eram │ └── showcaseviewlib │ ├── GuideMessageView.java │ ├── GuideView.java │ ├── Targetable.java │ ├── config │ ├── DismissType.java │ ├── Gravity.java │ └── PointerType.java │ └── listener │ └── GuideListener.java └── res ├── anim ├── fade_in.xml └── fade_out.xml └── values └── strings.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/_config.yml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/ir/smartdevelop/eram/showcaseview/CircleView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/java/ir/smartdevelop/eram/showcaseview/CircleView.java -------------------------------------------------------------------------------- /app/src/main/java/ir/smartdevelop/eram/showcaseview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/java/ir/smartdevelop/eram/showcaseview/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/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/mreram/ShowCaseView/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/mreram/ShowCaseView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /demo-flatShowCaseView.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/demo-flatShowCaseView.apk -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshots/Screenshot_2018-01-21-00-51-21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/screenshots/Screenshot_2018-01-21-00-51-21.png -------------------------------------------------------------------------------- /screenshots/Screenshot_2018-01-21-00-51-52.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/screenshots/Screenshot_2018-01-21-00-51-52.png -------------------------------------------------------------------------------- /screenshots/Screenshot_2018-01-21-00-52-43.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/screenshots/Screenshot_2018-01-21-00-52-43.png -------------------------------------------------------------------------------- /screenshots/Screenshot_2018-01-21-00-54-44.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/screenshots/Screenshot_2018-01-21-00-54-44.png -------------------------------------------------------------------------------- /screenshots/Screenshot_2018-01-21-00-55-08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/screenshots/Screenshot_2018-01-21-00-55-08.png -------------------------------------------------------------------------------- /screenshots/Screenshot_2018-01-24-16-41-38.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/screenshots/Screenshot_2018-01-24-16-41-38.png -------------------------------------------------------------------------------- /screenshots/Screenshot_2018-01-24-16-52-03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/screenshots/Screenshot_2018-01-24-16-52-03.png -------------------------------------------------------------------------------- /screenshots/Screenshot_2018-01-24-16-53-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/screenshots/Screenshot_2018-01-24-16-53-17.png -------------------------------------------------------------------------------- /screenshots/sample1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/screenshots/sample1.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':showcaseviewlib' 2 | -------------------------------------------------------------------------------- /showcaseviewlib/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /showcaseviewlib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/showcaseviewlib/build.gradle -------------------------------------------------------------------------------- /showcaseviewlib/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/showcaseviewlib/proguard-rules.pro -------------------------------------------------------------------------------- /showcaseviewlib/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /showcaseviewlib/src/main/java/smartdevelop/ir/eram/showcaseviewlib/GuideMessageView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/showcaseviewlib/src/main/java/smartdevelop/ir/eram/showcaseviewlib/GuideMessageView.java -------------------------------------------------------------------------------- /showcaseviewlib/src/main/java/smartdevelop/ir/eram/showcaseviewlib/GuideView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/showcaseviewlib/src/main/java/smartdevelop/ir/eram/showcaseviewlib/GuideView.java -------------------------------------------------------------------------------- /showcaseviewlib/src/main/java/smartdevelop/ir/eram/showcaseviewlib/Targetable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/showcaseviewlib/src/main/java/smartdevelop/ir/eram/showcaseviewlib/Targetable.java -------------------------------------------------------------------------------- /showcaseviewlib/src/main/java/smartdevelop/ir/eram/showcaseviewlib/config/DismissType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/showcaseviewlib/src/main/java/smartdevelop/ir/eram/showcaseviewlib/config/DismissType.java -------------------------------------------------------------------------------- /showcaseviewlib/src/main/java/smartdevelop/ir/eram/showcaseviewlib/config/Gravity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/showcaseviewlib/src/main/java/smartdevelop/ir/eram/showcaseviewlib/config/Gravity.java -------------------------------------------------------------------------------- /showcaseviewlib/src/main/java/smartdevelop/ir/eram/showcaseviewlib/config/PointerType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/showcaseviewlib/src/main/java/smartdevelop/ir/eram/showcaseviewlib/config/PointerType.java -------------------------------------------------------------------------------- /showcaseviewlib/src/main/java/smartdevelop/ir/eram/showcaseviewlib/listener/GuideListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/showcaseviewlib/src/main/java/smartdevelop/ir/eram/showcaseviewlib/listener/GuideListener.java -------------------------------------------------------------------------------- /showcaseviewlib/src/main/res/anim/fade_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/showcaseviewlib/src/main/res/anim/fade_in.xml -------------------------------------------------------------------------------- /showcaseviewlib/src/main/res/anim/fade_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/showcaseviewlib/src/main/res/anim/fade_out.xml -------------------------------------------------------------------------------- /showcaseviewlib/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mreram/ShowCaseView/HEAD/showcaseviewlib/src/main/res/values/strings.xml --------------------------------------------------------------------------------