├── .gitignore ├── .gradle ├── 4.10.1 │ ├── fileChanges │ │ └── last-build.bin │ ├── fileContent │ │ └── fileContent.lock │ ├── fileHashes │ │ ├── fileHashes.bin │ │ ├── fileHashes.lock │ │ └── resourceHashesCache.bin │ ├── gc.properties │ ├── javaCompile │ │ ├── classAnalysis.bin │ │ ├── javaCompile.lock │ │ └── taskHistory.bin │ └── taskHistory │ │ ├── taskHistory.bin │ │ └── taskHistory.lock ├── buildOutputCleanup │ ├── buildOutputCleanup.lock │ ├── cache.properties │ └── outputFiles.bin └── vcs-1 │ └── gc.properties ├── .idea ├── caches │ ├── build_file_checksums.ser │ └── gradle_models.ser ├── codeStyles │ └── Project.xml ├── gradle.xml ├── libraries │ ├── Gradle__android_arch_core_common_1_1_1_jar.xml │ ├── Gradle__android_arch_core_runtime_1_1_1_aar.xml │ ├── Gradle__android_arch_lifecycle_common_1_1_1_jar.xml │ ├── Gradle__android_arch_lifecycle_livedata_1_1_1_aar.xml │ ├── Gradle__android_arch_lifecycle_livedata_core_1_1_1_aar.xml │ ├── Gradle__android_arch_lifecycle_runtime_1_1_1_aar.xml │ ├── Gradle__android_arch_lifecycle_viewmodel_1_1_1_aar.xml │ ├── Gradle__com_android_support_animated_vector_drawable_28_0_0_aar.xml │ ├── Gradle__com_android_support_appcompat_v7_28_0_0_aar.xml │ ├── Gradle__com_android_support_asynclayoutinflater_28_0_0_aar.xml │ ├── Gradle__com_android_support_collections_28_0_0_jar.xml │ ├── Gradle__com_android_support_constraint_constraint_layout_1_1_3_aar.xml │ ├── Gradle__com_android_support_constraint_constraint_layout_solver_1_1_3_jar.xml │ ├── Gradle__com_android_support_coordinatorlayout_28_0_0_aar.xml │ ├── Gradle__com_android_support_cursoradapter_28_0_0_aar.xml │ ├── Gradle__com_android_support_customview_28_0_0_aar.xml │ ├── Gradle__com_android_support_documentfile_28_0_0_aar.xml │ ├── Gradle__com_android_support_drawerlayout_28_0_0_aar.xml │ ├── Gradle__com_android_support_interpolator_28_0_0_aar.xml │ ├── Gradle__com_android_support_loader_28_0_0_aar.xml │ ├── Gradle__com_android_support_localbroadcastmanager_28_0_0_aar.xml │ ├── Gradle__com_android_support_print_28_0_0_aar.xml │ ├── Gradle__com_android_support_recyclerview_v7_28_0_0_aar.xml │ ├── Gradle__com_android_support_slidingpanelayout_28_0_0_aar.xml │ ├── Gradle__com_android_support_support_annotations_28_0_0_jar.xml │ ├── Gradle__com_android_support_support_compat_28_0_0_aar.xml │ ├── Gradle__com_android_support_support_core_ui_28_0_0_aar.xml │ ├── Gradle__com_android_support_support_core_utils_28_0_0_aar.xml │ ├── Gradle__com_android_support_support_fragment_28_0_0_aar.xml │ ├── Gradle__com_android_support_support_media_compat_27_0_0_aar.xml │ ├── Gradle__com_android_support_support_vector_drawable_28_0_0_aar.xml │ ├── Gradle__com_android_support_swiperefreshlayout_28_0_0_aar.xml │ ├── Gradle__com_android_support_test_espresso_espresso_core_3_0_2_aar.xml │ ├── Gradle__com_android_support_test_espresso_espresso_idling_resource_3_0_2_aar.xml │ ├── Gradle__com_android_support_test_monitor_1_0_2_aar.xml │ ├── Gradle__com_android_support_test_runner_1_0_2_aar.xml │ ├── Gradle__com_android_support_versionedparcelable_28_0_0_aar.xml │ ├── Gradle__com_android_support_viewpager_28_0_0_aar.xml │ ├── Gradle__com_google_android_exoplayer_exoplayer_2_8_4_aar.xml │ ├── Gradle__com_google_android_exoplayer_exoplayer_core_2_8_4_aar.xml │ ├── Gradle__com_google_android_exoplayer_exoplayer_dash_2_8_4_aar.xml │ ├── Gradle__com_google_android_exoplayer_exoplayer_hls_2_8_4_aar.xml │ ├── Gradle__com_google_android_exoplayer_exoplayer_smoothstreaming_2_8_4_aar.xml │ ├── Gradle__com_google_android_exoplayer_exoplayer_ui_2_8_4_aar.xml │ ├── Gradle__com_google_code_findbugs_jsr305_2_0_1_jar.xml │ ├── Gradle__com_squareup_javawriter_2_1_1_jar.xml │ ├── Gradle__javax_inject_javax_inject_1_jar.xml │ ├── Gradle__junit_junit_4_12_jar.xml │ ├── Gradle__net_sf_kxml_kxml2_2_3_0_jar.xml │ ├── Gradle__org_hamcrest_hamcrest_core_1_3_jar.xml │ ├── Gradle__org_hamcrest_hamcrest_integration_1_3_jar.xml │ └── Gradle__org_hamcrest_hamcrest_library_1_3_jar.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── workspace.xml ├── README.md ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── codingwithmitch │ │ └── recyclerviewvideoplayer │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── codingwithmitch │ │ │ └── recyclerviewvideoplayer │ │ │ ├── MainActivity.java │ │ │ ├── VideoPlayerRecyclerAdapter.java │ │ │ ├── VideoPlayerRecyclerView.java │ │ │ ├── VideoPlayerViewHolder.java │ │ │ ├── models │ │ │ └── MediaObject.java │ │ │ └── util │ │ │ ├── Resources.java │ │ │ └── VerticalSpacingItemDecorator.java │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ ├── ic_volume_off_grey_24dp.xml │ │ ├── ic_volume_up_grey_24dp.xml │ │ └── white_background.png │ │ ├── layout │ │ ├── activity_main.xml │ │ └── layout_video_list_item.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 │ └── codingwithmitch │ └── recyclerviewvideoplayer │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.gitignore -------------------------------------------------------------------------------- /.gradle/4.10.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/4.10.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.gradle/4.10.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /.gradle/4.10.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.gradle/4.10.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /.gradle/4.10.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.gradle/4.10.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /.gradle/4.10.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.gradle/4.10.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /.gradle/4.10.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/4.10.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.gradle/4.10.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /.gradle/4.10.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.gradle/4.10.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /.gradle/4.10.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.gradle/4.10.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /.gradle/4.10.1/taskHistory/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.gradle/4.10.1/taskHistory/taskHistory.bin -------------------------------------------------------------------------------- /.gradle/4.10.1/taskHistory/taskHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.gradle/4.10.1/taskHistory/taskHistory.lock -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Wed Feb 20 09:15:52 PST 2019 2 | gradle.version=4.10.1 3 | -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /.idea/caches/gradle_models.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/caches/gradle_models.ser -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__android_arch_core_common_1_1_1_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__android_arch_core_common_1_1_1_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__android_arch_core_runtime_1_1_1_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__android_arch_core_runtime_1_1_1_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__android_arch_lifecycle_common_1_1_1_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__android_arch_lifecycle_common_1_1_1_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__android_arch_lifecycle_livedata_1_1_1_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__android_arch_lifecycle_livedata_1_1_1_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__android_arch_lifecycle_livedata_core_1_1_1_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__android_arch_lifecycle_livedata_core_1_1_1_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__android_arch_lifecycle_runtime_1_1_1_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__android_arch_lifecycle_runtime_1_1_1_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__android_arch_lifecycle_viewmodel_1_1_1_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__android_arch_lifecycle_viewmodel_1_1_1_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_animated_vector_drawable_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_animated_vector_drawable_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_appcompat_v7_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_appcompat_v7_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_asynclayoutinflater_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_asynclayoutinflater_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_collections_28_0_0_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_collections_28_0_0_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_constraint_constraint_layout_1_1_3_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_constraint_constraint_layout_1_1_3_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_constraint_constraint_layout_solver_1_1_3_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_constraint_constraint_layout_solver_1_1_3_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_coordinatorlayout_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_coordinatorlayout_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_cursoradapter_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_cursoradapter_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_customview_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_customview_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_documentfile_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_documentfile_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_drawerlayout_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_drawerlayout_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_interpolator_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_interpolator_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_loader_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_loader_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_localbroadcastmanager_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_localbroadcastmanager_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_print_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_print_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_recyclerview_v7_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_recyclerview_v7_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_slidingpanelayout_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_slidingpanelayout_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_support_annotations_28_0_0_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_support_annotations_28_0_0_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_support_compat_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_support_compat_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_support_core_ui_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_support_core_ui_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_support_core_utils_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_support_core_utils_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_support_fragment_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_support_fragment_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_support_media_compat_27_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_support_media_compat_27_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_support_vector_drawable_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_support_vector_drawable_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_swiperefreshlayout_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_swiperefreshlayout_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_test_espresso_espresso_core_3_0_2_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_test_espresso_espresso_core_3_0_2_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_test_espresso_espresso_idling_resource_3_0_2_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_test_espresso_espresso_idling_resource_3_0_2_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_test_monitor_1_0_2_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_test_monitor_1_0_2_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_test_runner_1_0_2_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_test_runner_1_0_2_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_versionedparcelable_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_versionedparcelable_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_viewpager_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_android_support_viewpager_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_google_android_exoplayer_exoplayer_2_8_4_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_google_android_exoplayer_exoplayer_2_8_4_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_google_android_exoplayer_exoplayer_core_2_8_4_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_google_android_exoplayer_exoplayer_core_2_8_4_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_google_android_exoplayer_exoplayer_dash_2_8_4_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_google_android_exoplayer_exoplayer_dash_2_8_4_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_google_android_exoplayer_exoplayer_hls_2_8_4_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_google_android_exoplayer_exoplayer_hls_2_8_4_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_google_android_exoplayer_exoplayer_smoothstreaming_2_8_4_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_google_android_exoplayer_exoplayer_smoothstreaming_2_8_4_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_google_android_exoplayer_exoplayer_ui_2_8_4_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_google_android_exoplayer_exoplayer_ui_2_8_4_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_google_code_findbugs_jsr305_2_0_1_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_google_code_findbugs_jsr305_2_0_1_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_squareup_javawriter_2_1_1_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__com_squareup_javawriter_2_1_1_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__javax_inject_javax_inject_1_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__javax_inject_javax_inject_1_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__junit_junit_4_12_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__junit_junit_4_12_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__net_sf_kxml_kxml2_2_3_0_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__net_sf_kxml_kxml2_2_3_0_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__org_hamcrest_hamcrest_core_1_3_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__org_hamcrest_hamcrest_integration_1_3_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__org_hamcrest_hamcrest_integration_1_3_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__org_hamcrest_hamcrest_library_1_3_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/libraries/Gradle__org_hamcrest_hamcrest_library_1_3_jar.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/codingwithmitch/recyclerviewvideoplayer/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/androidTest/java/com/codingwithmitch/recyclerviewvideoplayer/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/codingwithmitch/recyclerviewvideoplayer/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/java/com/codingwithmitch/recyclerviewvideoplayer/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/codingwithmitch/recyclerviewvideoplayer/VideoPlayerRecyclerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/java/com/codingwithmitch/recyclerviewvideoplayer/VideoPlayerRecyclerAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/codingwithmitch/recyclerviewvideoplayer/VideoPlayerRecyclerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/java/com/codingwithmitch/recyclerviewvideoplayer/VideoPlayerRecyclerView.java -------------------------------------------------------------------------------- /app/src/main/java/com/codingwithmitch/recyclerviewvideoplayer/VideoPlayerViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/java/com/codingwithmitch/recyclerviewvideoplayer/VideoPlayerViewHolder.java -------------------------------------------------------------------------------- /app/src/main/java/com/codingwithmitch/recyclerviewvideoplayer/models/MediaObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/java/com/codingwithmitch/recyclerviewvideoplayer/models/MediaObject.java -------------------------------------------------------------------------------- /app/src/main/java/com/codingwithmitch/recyclerviewvideoplayer/util/Resources.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/java/com/codingwithmitch/recyclerviewvideoplayer/util/Resources.java -------------------------------------------------------------------------------- /app/src/main/java/com/codingwithmitch/recyclerviewvideoplayer/util/VerticalSpacingItemDecorator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/java/com/codingwithmitch/recyclerviewvideoplayer/util/VerticalSpacingItemDecorator.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_volume_off_grey_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/drawable/ic_volume_off_grey_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_volume_up_grey_24dp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/drawable/ic_volume_up_grey_24dp.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/white_background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/drawable/white_background.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/layout_video_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/layout/layout_video_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/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/mitchtabian/Video-Player-RecyclerView/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/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/codingwithmitch/recyclerviewvideoplayer/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/app/src/test/java/com/codingwithmitch/recyclerviewvideoplayer/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mitchtabian/Video-Player-RecyclerView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------