├── .gitignore ├── Picker ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── appexecutors │ │ └── picker │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── appexecutors │ │ │ └── picker │ │ │ ├── Picker.kt │ │ │ ├── gallery │ │ │ ├── BottomSheetMediaRecyclerAdapter.kt │ │ │ ├── InstantMediaRecyclerAdapter.kt │ │ │ └── MediaModel.kt │ │ │ ├── interfaces │ │ │ ├── MediaClickInterface.kt │ │ │ └── PermissionCallback.kt │ │ │ └── utils │ │ │ ├── GeneralUtils.kt │ │ │ ├── HeaderItemDecoration.kt │ │ │ ├── MediaConstants.kt │ │ │ ├── PermissionUtils.kt │ │ │ └── PickerOptions.kt │ └── res │ │ ├── drawable │ │ ├── background_alpha_dark.xml │ │ ├── background_circular_green.xml │ │ ├── background_circular_red.xml │ │ ├── ic_baseline_arrow_back_36.xml │ │ ├── ic_baseline_check_36.xml │ │ ├── ic_baseline_expand_less_36.xml │ │ ├── ic_baseline_flash_off_36.xml │ │ ├── ic_baseline_flash_on_36.xml │ │ ├── ic_baseline_flip_camera_36.xml │ │ ├── ic_baseline_videocam_24.xml │ │ ├── ic_check_box.xml │ │ ├── ic_shutter_focused.xml │ │ ├── ic_shutter_normal.xml │ │ ├── ic_shutter_pressed.xml │ │ ├── progress_drawable.xml │ │ └── shape_ring.xml │ │ ├── layout │ │ ├── activity_picker.xml │ │ ├── recycler_item_date_header.xml │ │ └── recycler_item_media.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimen.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── appexecutors │ └── picker │ └── ExampleUnitTest.kt ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── appexecutors │ │ └── pickersample │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── appexecutors │ │ │ └── pickersample │ │ │ └── MainActivity.kt │ └── 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 │ └── test │ └── java │ └── com │ └── appexecutors │ └── pickersample │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screens ├── picker.gif ├── screen1.png ├── screen2.png ├── screen3.png ├── screen4.png └── screen5.jpg └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/.gitignore -------------------------------------------------------------------------------- /Picker/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/.gitignore -------------------------------------------------------------------------------- /Picker/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/build.gradle -------------------------------------------------------------------------------- /Picker/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Picker/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/proguard-rules.pro -------------------------------------------------------------------------------- /Picker/src/androidTest/java/com/appexecutors/picker/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/androidTest/java/com/appexecutors/picker/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /Picker/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /Picker/src/main/java/com/appexecutors/picker/Picker.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/java/com/appexecutors/picker/Picker.kt -------------------------------------------------------------------------------- /Picker/src/main/java/com/appexecutors/picker/gallery/BottomSheetMediaRecyclerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/java/com/appexecutors/picker/gallery/BottomSheetMediaRecyclerAdapter.kt -------------------------------------------------------------------------------- /Picker/src/main/java/com/appexecutors/picker/gallery/InstantMediaRecyclerAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/java/com/appexecutors/picker/gallery/InstantMediaRecyclerAdapter.kt -------------------------------------------------------------------------------- /Picker/src/main/java/com/appexecutors/picker/gallery/MediaModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/java/com/appexecutors/picker/gallery/MediaModel.kt -------------------------------------------------------------------------------- /Picker/src/main/java/com/appexecutors/picker/interfaces/MediaClickInterface.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/java/com/appexecutors/picker/interfaces/MediaClickInterface.kt -------------------------------------------------------------------------------- /Picker/src/main/java/com/appexecutors/picker/interfaces/PermissionCallback.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/java/com/appexecutors/picker/interfaces/PermissionCallback.kt -------------------------------------------------------------------------------- /Picker/src/main/java/com/appexecutors/picker/utils/GeneralUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/java/com/appexecutors/picker/utils/GeneralUtils.kt -------------------------------------------------------------------------------- /Picker/src/main/java/com/appexecutors/picker/utils/HeaderItemDecoration.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/java/com/appexecutors/picker/utils/HeaderItemDecoration.kt -------------------------------------------------------------------------------- /Picker/src/main/java/com/appexecutors/picker/utils/MediaConstants.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/java/com/appexecutors/picker/utils/MediaConstants.kt -------------------------------------------------------------------------------- /Picker/src/main/java/com/appexecutors/picker/utils/PermissionUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/java/com/appexecutors/picker/utils/PermissionUtils.kt -------------------------------------------------------------------------------- /Picker/src/main/java/com/appexecutors/picker/utils/PickerOptions.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/java/com/appexecutors/picker/utils/PickerOptions.kt -------------------------------------------------------------------------------- /Picker/src/main/res/drawable/background_alpha_dark.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/drawable/background_alpha_dark.xml -------------------------------------------------------------------------------- /Picker/src/main/res/drawable/background_circular_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/drawable/background_circular_green.xml -------------------------------------------------------------------------------- /Picker/src/main/res/drawable/background_circular_red.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/drawable/background_circular_red.xml -------------------------------------------------------------------------------- /Picker/src/main/res/drawable/ic_baseline_arrow_back_36.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/drawable/ic_baseline_arrow_back_36.xml -------------------------------------------------------------------------------- /Picker/src/main/res/drawable/ic_baseline_check_36.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/drawable/ic_baseline_check_36.xml -------------------------------------------------------------------------------- /Picker/src/main/res/drawable/ic_baseline_expand_less_36.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/drawable/ic_baseline_expand_less_36.xml -------------------------------------------------------------------------------- /Picker/src/main/res/drawable/ic_baseline_flash_off_36.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/drawable/ic_baseline_flash_off_36.xml -------------------------------------------------------------------------------- /Picker/src/main/res/drawable/ic_baseline_flash_on_36.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/drawable/ic_baseline_flash_on_36.xml -------------------------------------------------------------------------------- /Picker/src/main/res/drawable/ic_baseline_flip_camera_36.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/drawable/ic_baseline_flip_camera_36.xml -------------------------------------------------------------------------------- /Picker/src/main/res/drawable/ic_baseline_videocam_24.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/drawable/ic_baseline_videocam_24.xml -------------------------------------------------------------------------------- /Picker/src/main/res/drawable/ic_check_box.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/drawable/ic_check_box.xml -------------------------------------------------------------------------------- /Picker/src/main/res/drawable/ic_shutter_focused.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/drawable/ic_shutter_focused.xml -------------------------------------------------------------------------------- /Picker/src/main/res/drawable/ic_shutter_normal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/drawable/ic_shutter_normal.xml -------------------------------------------------------------------------------- /Picker/src/main/res/drawable/ic_shutter_pressed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/drawable/ic_shutter_pressed.xml -------------------------------------------------------------------------------- /Picker/src/main/res/drawable/progress_drawable.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/drawable/progress_drawable.xml -------------------------------------------------------------------------------- /Picker/src/main/res/drawable/shape_ring.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/drawable/shape_ring.xml -------------------------------------------------------------------------------- /Picker/src/main/res/layout/activity_picker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/layout/activity_picker.xml -------------------------------------------------------------------------------- /Picker/src/main/res/layout/recycler_item_date_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/layout/recycler_item_date_header.xml -------------------------------------------------------------------------------- /Picker/src/main/res/layout/recycler_item_media.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/layout/recycler_item_media.xml -------------------------------------------------------------------------------- /Picker/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /Picker/src/main/res/values/dimen.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/values/dimen.xml -------------------------------------------------------------------------------- /Picker/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /Picker/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /Picker/src/test/java/com/appexecutors/picker/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/Picker/src/test/java/com/appexecutors/picker/ExampleUnitTest.kt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/appexecutors/pickersample/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/androidTest/java/com/appexecutors/pickersample/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/appexecutors/pickersample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/main/java/com/appexecutors/pickersample/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/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/Parag2385/Picker/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/Parag2385/Picker/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/appexecutors/pickersample/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/app/src/test/java/com/appexecutors/pickersample/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screens/picker.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/screens/picker.gif -------------------------------------------------------------------------------- /screens/screen1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/screens/screen1.png -------------------------------------------------------------------------------- /screens/screen2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/screens/screen2.png -------------------------------------------------------------------------------- /screens/screen3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/screens/screen3.png -------------------------------------------------------------------------------- /screens/screen4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/screens/screen4.png -------------------------------------------------------------------------------- /screens/screen5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/screens/screen5.jpg -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Parag2385/Picker/HEAD/settings.gradle --------------------------------------------------------------------------------