├── app ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.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 │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ ├── drawable │ │ │ │ ├── ic_check_black_24dp.xml │ │ │ │ ├── ic_error_outline_black_24dp.xml │ │ │ │ ├── ic_pan_tool_black_24dp.xml │ │ │ │ └── ic_launcher_background.xml │ │ │ ├── drawable-v24 │ │ │ │ ├── ic_info_outline_black_24dp.xml │ │ │ │ └── ic_launcher_foreground.xml │ │ │ └── layout │ │ │ │ └── activity_main.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── jeevandeshmukh │ │ │ └── fancybottomsheetdialog │ │ │ └── MainActivity.java │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── jeevandeshmukh │ │ │ └── fancybottomsheetdialog │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── jeevandeshmukh │ │ └── fancybottomsheetdialog │ │ └── ExampleInstrumentedTest.java ├── proguard-rules.pro ├── build.gradle └── app.iml ├── fancybottomsheetdialog ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ ├── anim │ │ │ │ ├── dialog_show.xml │ │ │ │ └── dialog_dismiss.xml │ │ │ └── layout │ │ │ │ └── item_fancy_dialog.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── jeevandeshmukh │ │ │ └── fancybottomsheetdialoglib │ │ │ └── FancyBottomSheetDialog.java │ ├── test │ │ └── java │ │ │ └── com │ │ │ └── jeevandeshmukh │ │ │ └── fancybottomsheetdialog │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── com │ │ └── jeevandeshmukh │ │ └── fancybottomsheetdialog │ │ └── ExampleInstrumentedTest.java ├── build.gradle ├── proguard-rules.pro └── fancybottomsheetdialog.iml ├── settings.gradle ├── .DS_Store ├── app-debug.apk ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── Screenshots ├── WhatsApp Image 2018-06-14 at 5.41.42 PM.jpeg ├── WhatsApp Image 2018-06-14 at 6.04.05 PM.jpeg ├── WhatsApp Image 2018-06-14 at 5.41.42 PM (1).jpeg ├── WhatsApp Image 2018-06-14 at 5.41.42 PM (2).jpeg ├── WhatsApp Image 2018-06-14 at 5.41.42 PM (3).jpeg ├── WhatsApp Image 2018-06-14 at 5.41.42 PM (4).jpeg ├── WhatsApp Image 2018-06-14 at 5.41.42 PM (5).jpeg ├── WhatsApp Image 2018-06-14 at 5.41.42 PM (6).jpeg ├── WhatsApp Image 2018-06-14 at 6.04.05 PM (1).jpeg ├── WhatsApp Image 2018-06-14 at 6.04.05 PM (2).jpeg ├── WhatsApp Image 2018-06-14 at 6.04.05 PM (3).jpeg └── WhatsApp Image 2018-06-14 at 6.04.05 PM (4).jpeg ├── local.properties ├── gradle.properties ├── FancyBottomSheetDialog.iml ├── LICENSE ├── gradlew.bat ├── README.md └── gradlew /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /fancybottomsheetdialog/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':fancybottomsheetdialog' 2 | -------------------------------------------------------------------------------- /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/.DS_Store -------------------------------------------------------------------------------- /app-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/app-debug.apk -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FancyBottomSheetDialog 3 | 4 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /fancybottomsheetdialog/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | FancyBottomSheetDialog 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /Screenshots/WhatsApp Image 2018-06-14 at 5.41.42 PM.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/Screenshots/WhatsApp Image 2018-06-14 at 5.41.42 PM.jpeg -------------------------------------------------------------------------------- /Screenshots/WhatsApp Image 2018-06-14 at 6.04.05 PM.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/Screenshots/WhatsApp Image 2018-06-14 at 6.04.05 PM.jpeg -------------------------------------------------------------------------------- /fancybottomsheetdialog/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /Screenshots/WhatsApp Image 2018-06-14 at 5.41.42 PM (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/Screenshots/WhatsApp Image 2018-06-14 at 5.41.42 PM (1).jpeg -------------------------------------------------------------------------------- /Screenshots/WhatsApp Image 2018-06-14 at 5.41.42 PM (2).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/Screenshots/WhatsApp Image 2018-06-14 at 5.41.42 PM (2).jpeg -------------------------------------------------------------------------------- /Screenshots/WhatsApp Image 2018-06-14 at 5.41.42 PM (3).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/Screenshots/WhatsApp Image 2018-06-14 at 5.41.42 PM (3).jpeg -------------------------------------------------------------------------------- /Screenshots/WhatsApp Image 2018-06-14 at 5.41.42 PM (4).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/Screenshots/WhatsApp Image 2018-06-14 at 5.41.42 PM (4).jpeg -------------------------------------------------------------------------------- /Screenshots/WhatsApp Image 2018-06-14 at 5.41.42 PM (5).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/Screenshots/WhatsApp Image 2018-06-14 at 5.41.42 PM (5).jpeg -------------------------------------------------------------------------------- /Screenshots/WhatsApp Image 2018-06-14 at 5.41.42 PM (6).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/Screenshots/WhatsApp Image 2018-06-14 at 5.41.42 PM (6).jpeg -------------------------------------------------------------------------------- /Screenshots/WhatsApp Image 2018-06-14 at 6.04.05 PM (1).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/Screenshots/WhatsApp Image 2018-06-14 at 6.04.05 PM (1).jpeg -------------------------------------------------------------------------------- /Screenshots/WhatsApp Image 2018-06-14 at 6.04.05 PM (2).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/Screenshots/WhatsApp Image 2018-06-14 at 6.04.05 PM (2).jpeg -------------------------------------------------------------------------------- /Screenshots/WhatsApp Image 2018-06-14 at 6.04.05 PM (3).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/Screenshots/WhatsApp Image 2018-06-14 at 6.04.05 PM (3).jpeg -------------------------------------------------------------------------------- /Screenshots/WhatsApp Image 2018-06-14 at 6.04.05 PM (4).jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/imjeevandeshmukh/FancyBottomSheetDialog/HEAD/Screenshots/WhatsApp Image 2018-06-14 at 6.04.05 PM (4).jpeg -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | 7 | -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Thu Jun 14 12:38:38 IST 2018 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-4.4-all.zip 7 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /fancybottomsheetdialog/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #3F51B5 4 | #303F9F 5 | #FF4081 6 | #424242 7 | #757575 8 | -------------------------------------------------------------------------------- /fancybottomsheetdialog/src/main/res/anim/dialog_show.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_check_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /fancybottomsheetdialog/src/main/res/anim/dialog_dismiss.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8 | -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- 1 | ## This file is automatically generated by Android Studio. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file should *NOT* be checked into Version Control Systems, 5 | # as it contains information specific to your local configuration. 6 | # 7 | # Location of the SDK. This is only used by Gradle. 8 | # For customization when using a Version Control System, please read the 9 | # header note. 10 | sdk.dir=/Users/jeevandeshmukh/Library/Android/sdk -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_info_outline_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_error_outline_black_24dp.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /app/src/test/java/com/jeevandeshmukh/fancybottomsheetdialog/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.jeevandeshmukh.fancybottomsheetdialog; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /fancybottomsheetdialog/src/test/java/com/jeevandeshmukh/fancybottomsheetdialog/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package com.jeevandeshmukh.fancybottomsheetdialog; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * Example local unit test, which will execute on the development machine (host). 9 | * 10 | * @see Testing documentation 11 | */ 12 | public class ExampleUnitTest { 13 | @Test 14 | public void addition_isCorrect() { 15 | assertEquals(4, 2 + 2); 16 | } 17 | } -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 | 10 |