├── .gitattributes ├── .gitignore ├── .idea ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── encodings.xml ├── misc.xml └── runConfigurations.xml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── org │ │ └── ucarsu │ │ └── customalertdialog │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── org │ │ │ └── ucarsu │ │ │ └── customalertdialog │ │ │ ├── activity │ │ │ └── MainActivity.kt │ │ │ ├── component │ │ │ └── CustomAlertDialog.kt │ │ │ ├── enums │ │ │ └── DialogType.kt │ │ │ └── ext │ │ │ └── ActivityExtension.kt │ └── res │ │ ├── color │ │ └── secondary_button_text_selector.xml │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── disable_primary_button.xml │ │ ├── disable_secondary_button.xml │ │ ├── edit_text_underline.xml │ │ ├── ic_error.xml │ │ ├── ic_launcher_background.xml │ │ ├── ic_warning.xml │ │ ├── primary_button_background.xml │ │ ├── ripple_primary_button_background.xml │ │ ├── ripple_primary_button_background_pressed.xml │ │ ├── ripple_second_button_background.xml │ │ ├── ripple_second_button_background_pressed.xml │ │ └── secondary_button_background.xml │ │ ├── font │ │ ├── roboto_black.ttf │ │ ├── roboto_bold.ttf │ │ ├── roboto_light.ttf │ │ ├── roboto_medium.ttf │ │ └── roboto_regular.ttf │ │ ├── layout │ │ ├── activity_main.xml │ │ └── custom_alert_dialog_view.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 │ └── org │ └── ucarsu │ └── customalertdialog │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshoots ├── Ekran Resmi 2019-08-18 01.06.13.png ├── Ekran Resmi 2019-08-18 01.06.27.png └── Ekran Resmi 2019-08-18 01.07.01.png └── settings.gradle /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/org/ucarsu/customalertdialog/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/androidTest/java/org/ucarsu/customalertdialog/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/org/ucarsu/customalertdialog/activity/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/java/org/ucarsu/customalertdialog/activity/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ucarsu/customalertdialog/component/CustomAlertDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/java/org/ucarsu/customalertdialog/component/CustomAlertDialog.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ucarsu/customalertdialog/enums/DialogType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/java/org/ucarsu/customalertdialog/enums/DialogType.kt -------------------------------------------------------------------------------- /app/src/main/java/org/ucarsu/customalertdialog/ext/ActivityExtension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/java/org/ucarsu/customalertdialog/ext/ActivityExtension.kt -------------------------------------------------------------------------------- /app/src/main/res/color/secondary_button_text_selector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/color/secondary_button_text_selector.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/disable_primary_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/drawable/disable_primary_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/disable_secondary_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/drawable/disable_secondary_button.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/edit_text_underline.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/drawable/edit_text_underline.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_error.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/drawable/ic_error.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_warning.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/drawable/ic_warning.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/primary_button_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/drawable/primary_button_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ripple_primary_button_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/drawable/ripple_primary_button_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ripple_primary_button_background_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/drawable/ripple_primary_button_background_pressed.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ripple_second_button_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/drawable/ripple_second_button_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ripple_second_button_background_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/drawable/ripple_second_button_background_pressed.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/secondary_button_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/drawable/secondary_button_background.xml -------------------------------------------------------------------------------- /app/src/main/res/font/roboto_black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/font/roboto_black.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/roboto_bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/font/roboto_bold.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/roboto_light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/font/roboto_light.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/roboto_medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/font/roboto_medium.ttf -------------------------------------------------------------------------------- /app/src/main/res/font/roboto_regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/font/roboto_regular.ttf -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/custom_alert_dialog_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/layout/custom_alert_dialog_view.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/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/ogulcanucarsu/CustomAlertDialog/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/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/org/ucarsu/customalertdialog/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/app/src/test/java/org/ucarsu/customalertdialog/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshoots/Ekran Resmi 2019-08-18 01.06.13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/screenshoots/Ekran Resmi 2019-08-18 01.06.13.png -------------------------------------------------------------------------------- /screenshoots/Ekran Resmi 2019-08-18 01.06.27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/screenshoots/Ekran Resmi 2019-08-18 01.06.27.png -------------------------------------------------------------------------------- /screenshoots/Ekran Resmi 2019-08-18 01.07.01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ogulcanucarsu/CustomAlertDialog/HEAD/screenshoots/Ekran Resmi 2019-08-18 01.07.01.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------