├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── screenshots │ ├── carousal-notification.gif │ ├── carousal.png │ └── crousel.gif └── src │ ├── androidTest │ └── java │ │ └── in │ │ └── mamga │ │ └── carousalnotificationmaster │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── ic_launcher-web.png │ ├── java │ │ └── in │ │ │ └── mamga │ │ │ └── carousalnotificationmaster │ │ │ ├── CarousalItemClickReceiver.java │ │ │ ├── JSONParser.java │ │ │ ├── MainActivity.java │ │ │ ├── MarsImageActivity.java │ │ │ ├── QuoteDetailActivity.java │ │ │ ├── QuoteItem.java │ │ │ └── RoverItem.java │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── activity_mars_image.xml │ │ └── activity_quote_detail.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── in │ └── mamga │ └── carousalnotificationmaster │ └── ExampleUnitTest.java ├── carousalnotification ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── in │ │ └── mamga │ │ └── carousalnotification │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── in │ │ │ └── mamga │ │ │ └── carousalnotification │ │ │ ├── BasicImageDownloader.java │ │ │ ├── Carousal.java │ │ │ ├── CarousalConstants.java │ │ │ ├── CarousalEventReceiver.java │ │ │ ├── CarousalItem.java │ │ │ ├── CarousalSetUp.java │ │ │ └── CarousalUtilities.java │ └── res │ │ ├── drawable-hdpi │ │ ├── ic_carousal_icon.png │ │ ├── ic_carousal_left_arrow.png │ │ └── ic_carousal_right_icon.png │ │ ├── drawable-mdpi │ │ ├── ic_carousal_icon.png │ │ ├── ic_carousal_left_arrow.png │ │ └── ic_carousal_right_icon.png │ │ ├── drawable-xhdpi │ │ ├── ic_carousal_icon.png │ │ ├── ic_carousal_left_arrow.png │ │ └── ic_carousal_right_icon.png │ │ ├── drawable-xxhdpi │ │ ├── ic_carousal_icon.png │ │ ├── ic_carousal_left_arrow.png │ │ └── ic_carousal_right_icon.png │ │ ├── drawable │ │ └── carousal_card_item.xml │ │ ├── layout │ │ └── carousal_notification_item.xml │ │ └── values │ │ ├── colors.xml │ │ └── strings.xml │ └── test │ └── java │ └── in │ └── mamga │ └── carousalnotification │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/screenshots/carousal-notification.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/screenshots/carousal-notification.gif -------------------------------------------------------------------------------- /app/screenshots/carousal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/screenshots/carousal.png -------------------------------------------------------------------------------- /app/screenshots/crousel.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/screenshots/crousel.gif -------------------------------------------------------------------------------- /app/src/androidTest/java/in/mamga/carousalnotificationmaster/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/androidTest/java/in/mamga/carousalnotificationmaster/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /app/src/main/java/in/mamga/carousalnotificationmaster/CarousalItemClickReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/java/in/mamga/carousalnotificationmaster/CarousalItemClickReceiver.java -------------------------------------------------------------------------------- /app/src/main/java/in/mamga/carousalnotificationmaster/JSONParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/java/in/mamga/carousalnotificationmaster/JSONParser.java -------------------------------------------------------------------------------- /app/src/main/java/in/mamga/carousalnotificationmaster/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/java/in/mamga/carousalnotificationmaster/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/in/mamga/carousalnotificationmaster/MarsImageActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/java/in/mamga/carousalnotificationmaster/MarsImageActivity.java -------------------------------------------------------------------------------- /app/src/main/java/in/mamga/carousalnotificationmaster/QuoteDetailActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/java/in/mamga/carousalnotificationmaster/QuoteDetailActivity.java -------------------------------------------------------------------------------- /app/src/main/java/in/mamga/carousalnotificationmaster/QuoteItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/java/in/mamga/carousalnotificationmaster/QuoteItem.java -------------------------------------------------------------------------------- /app/src/main/java/in/mamga/carousalnotificationmaster/RoverItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/java/in/mamga/carousalnotificationmaster/RoverItem.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_mars_image.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/res/layout/activity_mars_image.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_quote_detail.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/res/layout/activity_quote_detail.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/in/mamga/carousalnotificationmaster/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/app/src/test/java/in/mamga/carousalnotificationmaster/ExampleUnitTest.java -------------------------------------------------------------------------------- /carousalnotification/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /carousalnotification/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/build.gradle -------------------------------------------------------------------------------- /carousalnotification/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/proguard-rules.pro -------------------------------------------------------------------------------- /carousalnotification/src/androidTest/java/in/mamga/carousalnotification/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/androidTest/java/in/mamga/carousalnotification/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /carousalnotification/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /carousalnotification/src/main/java/in/mamga/carousalnotification/BasicImageDownloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/java/in/mamga/carousalnotification/BasicImageDownloader.java -------------------------------------------------------------------------------- /carousalnotification/src/main/java/in/mamga/carousalnotification/Carousal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/java/in/mamga/carousalnotification/Carousal.java -------------------------------------------------------------------------------- /carousalnotification/src/main/java/in/mamga/carousalnotification/CarousalConstants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/java/in/mamga/carousalnotification/CarousalConstants.java -------------------------------------------------------------------------------- /carousalnotification/src/main/java/in/mamga/carousalnotification/CarousalEventReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/java/in/mamga/carousalnotification/CarousalEventReceiver.java -------------------------------------------------------------------------------- /carousalnotification/src/main/java/in/mamga/carousalnotification/CarousalItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/java/in/mamga/carousalnotification/CarousalItem.java -------------------------------------------------------------------------------- /carousalnotification/src/main/java/in/mamga/carousalnotification/CarousalSetUp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/java/in/mamga/carousalnotification/CarousalSetUp.java -------------------------------------------------------------------------------- /carousalnotification/src/main/java/in/mamga/carousalnotification/CarousalUtilities.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/java/in/mamga/carousalnotification/CarousalUtilities.java -------------------------------------------------------------------------------- /carousalnotification/src/main/res/drawable-hdpi/ic_carousal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/res/drawable-hdpi/ic_carousal_icon.png -------------------------------------------------------------------------------- /carousalnotification/src/main/res/drawable-hdpi/ic_carousal_left_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/res/drawable-hdpi/ic_carousal_left_arrow.png -------------------------------------------------------------------------------- /carousalnotification/src/main/res/drawable-hdpi/ic_carousal_right_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/res/drawable-hdpi/ic_carousal_right_icon.png -------------------------------------------------------------------------------- /carousalnotification/src/main/res/drawable-mdpi/ic_carousal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/res/drawable-mdpi/ic_carousal_icon.png -------------------------------------------------------------------------------- /carousalnotification/src/main/res/drawable-mdpi/ic_carousal_left_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/res/drawable-mdpi/ic_carousal_left_arrow.png -------------------------------------------------------------------------------- /carousalnotification/src/main/res/drawable-mdpi/ic_carousal_right_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/res/drawable-mdpi/ic_carousal_right_icon.png -------------------------------------------------------------------------------- /carousalnotification/src/main/res/drawable-xhdpi/ic_carousal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/res/drawable-xhdpi/ic_carousal_icon.png -------------------------------------------------------------------------------- /carousalnotification/src/main/res/drawable-xhdpi/ic_carousal_left_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/res/drawable-xhdpi/ic_carousal_left_arrow.png -------------------------------------------------------------------------------- /carousalnotification/src/main/res/drawable-xhdpi/ic_carousal_right_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/res/drawable-xhdpi/ic_carousal_right_icon.png -------------------------------------------------------------------------------- /carousalnotification/src/main/res/drawable-xxhdpi/ic_carousal_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/res/drawable-xxhdpi/ic_carousal_icon.png -------------------------------------------------------------------------------- /carousalnotification/src/main/res/drawable-xxhdpi/ic_carousal_left_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/res/drawable-xxhdpi/ic_carousal_left_arrow.png -------------------------------------------------------------------------------- /carousalnotification/src/main/res/drawable-xxhdpi/ic_carousal_right_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/res/drawable-xxhdpi/ic_carousal_right_icon.png -------------------------------------------------------------------------------- /carousalnotification/src/main/res/drawable/carousal_card_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/res/drawable/carousal_card_item.xml -------------------------------------------------------------------------------- /carousalnotification/src/main/res/layout/carousal_notification_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/res/layout/carousal_notification_item.xml -------------------------------------------------------------------------------- /carousalnotification/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /carousalnotification/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /carousalnotification/src/test/java/in/mamga/carousalnotification/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/carousalnotification/src/test/java/in/mamga/carousalnotification/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shaileshmamgain5/Carousel-Notification/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':carousalnotification' 2 | --------------------------------------------------------------------------------