├── .DS_Store ├── .gitignore ├── .gradle ├── 5.1.1 │ ├── executionHistory │ │ ├── executionHistory.bin │ │ └── executionHistory.lock │ ├── fileChanges │ │ └── last-build.bin │ ├── fileContent │ │ └── fileContent.lock │ ├── fileHashes │ │ ├── fileHashes.bin │ │ ├── fileHashes.lock │ │ └── resourceHashesCache.bin │ ├── gc.properties │ └── javaCompile │ │ ├── classAnalysis.bin │ │ ├── jarAnalysis.bin │ │ ├── javaCompile.lock │ │ └── taskHistory.bin ├── buildOutputCleanup │ ├── buildOutputCleanup.lock │ ├── cache.properties │ └── outputFiles.bin └── vcs-1 │ └── gc.properties ├── .idea ├── caches │ └── build_file_checksums.ser ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── dictionaries │ └── moos.xml ├── encodings.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_cardview_v7_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_design_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_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_transition_28_0_0_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_code_findbugs_jsr305_2_0_1_jar.xml │ ├── Gradle__com_squareup_javawriter_2_1_1_jar.xml │ ├── Gradle__de_hdodenhof_circleimageview_2_2_0_aar.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 │ ├── Gradle__org_jetbrains_annotations_13_0_jar.xml │ ├── Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_3_21_jar.xml │ ├── Gradle__org_jetbrains_kotlin_kotlin_stdlib_common_1_3_21_jar.xml │ └── Gradle__org_jetbrains_kotlin_kotlin_stdlib_jdk7_1_3_21_jar.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml ├── vcs.xml └── workspace.xml ├── EyebrowsVideoView.iml ├── LICENSE ├── README.md ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── eyebrows │ │ └── video │ │ └── sample │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── eyebrows │ │ │ └── video │ │ │ └── sample │ │ │ ├── MainActivity.kt │ │ │ ├── VideoData.kt │ │ │ ├── VideoListAdapter.kt │ │ │ └── VideoUtils.kt │ └── res │ │ ├── drawable-hdpi │ │ └── eyebrows.png │ │ ├── drawable-mdpi │ │ └── eyebrows.png │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable-xhdpi │ │ └── eyebrows.png │ │ ├── drawable-xxhdpi │ │ ├── collect.png │ │ ├── comment.png │ │ ├── eyebrows.png │ │ ├── like.png │ │ ├── moosphon_logo.jpeg │ │ ├── more.png │ │ ├── navigation.png │ │ └── share.png │ │ ├── drawable-xxxhdpi │ │ ├── eyebrows.png │ │ ├── thumbnail1.png │ │ ├── thumbnail2.png │ │ ├── thumbnail3.png │ │ ├── thumbnail4.png │ │ └── thumbnail5.png │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── item_video_layout.xml │ │ └── item_video_origin.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 │ │ ├── raw │ │ ├── video1.mp4 │ │ ├── video2.mp4 │ │ ├── video3.mp4 │ │ ├── video4.mp4 │ │ └── video5.mp4 │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── eyebrows │ └── video │ └── sample │ └── ExampleUnitTest.kt ├── art ├── .DS_Store ├── normal_preview.png └── preview.gif ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── library.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── eyebrows │ │ └── video │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── eyebrows │ │ │ └── video │ │ │ ├── EyebrowsVideoView.kt │ │ │ └── Size.kt │ └── res │ │ └── values │ │ ├── attrs.xml │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── eyebrows │ └── video │ └── ExampleUnitTest.java ├── local.properties └── settings.gradle /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.DS_Store -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.gitignore -------------------------------------------------------------------------------- /.gradle/5.1.1/executionHistory/executionHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.gradle/5.1.1/executionHistory/executionHistory.bin -------------------------------------------------------------------------------- /.gradle/5.1.1/executionHistory/executionHistory.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.gradle/5.1.1/executionHistory/executionHistory.lock -------------------------------------------------------------------------------- /.gradle/5.1.1/fileChanges/last-build.bin: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/5.1.1/fileContent/fileContent.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.gradle/5.1.1/fileContent/fileContent.lock -------------------------------------------------------------------------------- /.gradle/5.1.1/fileHashes/fileHashes.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.gradle/5.1.1/fileHashes/fileHashes.bin -------------------------------------------------------------------------------- /.gradle/5.1.1/fileHashes/fileHashes.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.gradle/5.1.1/fileHashes/fileHashes.lock -------------------------------------------------------------------------------- /.gradle/5.1.1/fileHashes/resourceHashesCache.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.gradle/5.1.1/fileHashes/resourceHashesCache.bin -------------------------------------------------------------------------------- /.gradle/5.1.1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.gradle/5.1.1/javaCompile/classAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.gradle/5.1.1/javaCompile/classAnalysis.bin -------------------------------------------------------------------------------- /.gradle/5.1.1/javaCompile/jarAnalysis.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.gradle/5.1.1/javaCompile/jarAnalysis.bin -------------------------------------------------------------------------------- /.gradle/5.1.1/javaCompile/javaCompile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.gradle/5.1.1/javaCompile/javaCompile.lock -------------------------------------------------------------------------------- /.gradle/5.1.1/javaCompile/taskHistory.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.gradle/5.1.1/javaCompile/taskHistory.bin -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/buildOutputCleanup.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.gradle/buildOutputCleanup/buildOutputCleanup.lock -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/cache.properties: -------------------------------------------------------------------------------- 1 | #Sat Aug 03 08:13:54 CST 2019 2 | gradle.version=5.1.1 3 | -------------------------------------------------------------------------------- /.gradle/buildOutputCleanup/outputFiles.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.gradle/buildOutputCleanup/outputFiles.bin -------------------------------------------------------------------------------- /.gradle/vcs-1/gc.properties: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.idea/caches/build_file_checksums.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/caches/build_file_checksums.ser -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/dictionaries/moos.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/dictionaries/moos.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__android_arch_core_common_1_1_1_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/HEAD/.idea/libraries/Gradle__com_android_support_asynclayoutinflater_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_cardview_v7_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/libraries/Gradle__com_android_support_cardview_v7_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_collections_28_0_0_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/HEAD/.idea/libraries/Gradle__com_android_support_customview_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_design_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/libraries/Gradle__com_android_support_design_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_documentfile_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/HEAD/.idea/libraries/Gradle__com_android_support_support_fragment_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_support_vector_drawable_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/HEAD/.idea/libraries/Gradle__com_android_support_test_runner_1_0_2_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_transition_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/libraries/Gradle__com_android_support_transition_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_android_support_versionedparcelable_28_0_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/HEAD/.idea/libraries/Gradle__com_android_support_viewpager_28_0_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__com_google_code_findbugs_jsr305_2_0_1_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/HEAD/.idea/libraries/Gradle__com_squareup_javawriter_2_1_1_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__de_hdodenhof_circleimageview_2_2_0_aar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/libraries/Gradle__de_hdodenhof_circleimageview_2_2_0_aar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__javax_inject_javax_inject_1_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/libraries/Gradle__javax_inject_javax_inject_1_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__junit_junit_4_12_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/HEAD/.idea/libraries/Gradle__org_hamcrest_hamcrest_library_1_3_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__org_jetbrains_annotations_13_0_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/libraries/Gradle__org_jetbrains_annotations_13_0_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_3_21_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_1_3_21_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_common_1_3_21_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_common_1_3_21_jar.xml -------------------------------------------------------------------------------- /.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jdk7_1_3_21_jar.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/libraries/Gradle__org_jetbrains_kotlin_kotlin_stdlib_jdk7_1_3_21_jar.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /EyebrowsVideoView.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/EyebrowsVideoView.iml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/eyebrows/video/sample/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/androidTest/java/com/eyebrows/video/sample/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/eyebrows/video/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/java/com/eyebrows/video/sample/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/eyebrows/video/sample/VideoData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/java/com/eyebrows/video/sample/VideoData.kt -------------------------------------------------------------------------------- /app/src/main/java/com/eyebrows/video/sample/VideoListAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/java/com/eyebrows/video/sample/VideoListAdapter.kt -------------------------------------------------------------------------------- /app/src/main/java/com/eyebrows/video/sample/VideoUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/java/com/eyebrows/video/sample/VideoUtils.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/eyebrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-hdpi/eyebrows.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/eyebrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-mdpi/eyebrows.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/eyebrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-xhdpi/eyebrows.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/collect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-xxhdpi/collect.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/comment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-xxhdpi/comment.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/eyebrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-xxhdpi/eyebrows.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/like.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-xxhdpi/like.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/moosphon_logo.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-xxhdpi/moosphon_logo.jpeg -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/more.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-xxhdpi/more.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/navigation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-xxhdpi/navigation.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/share.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-xxhdpi/share.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/eyebrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-xxxhdpi/eyebrows.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/thumbnail1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-xxxhdpi/thumbnail1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/thumbnail2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-xxxhdpi/thumbnail2.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/thumbnail3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-xxxhdpi/thumbnail3.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/thumbnail4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-xxxhdpi/thumbnail4.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/thumbnail5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable-xxxhdpi/thumbnail5.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_video_layout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/layout/item_video_layout.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_video_origin.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/layout/item_video_origin.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/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/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/raw/video1.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/raw/video1.mp4 -------------------------------------------------------------------------------- /app/src/main/res/raw/video2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/raw/video2.mp4 -------------------------------------------------------------------------------- /app/src/main/res/raw/video3.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/raw/video3.mp4 -------------------------------------------------------------------------------- /app/src/main/res/raw/video4.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/raw/video4.mp4 -------------------------------------------------------------------------------- /app/src/main/res/raw/video5.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/raw/video5.mp4 -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/eyebrows/video/sample/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/app/src/test/java/com/eyebrows/video/sample/ExampleUnitTest.kt -------------------------------------------------------------------------------- /art/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/art/.DS_Store -------------------------------------------------------------------------------- /art/normal_preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/art/normal_preview.png -------------------------------------------------------------------------------- /art/preview.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/art/preview.gif -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/library.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/library/library.iml -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/androidTest/java/com/eyebrows/video/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/library/src/androidTest/java/com/eyebrows/video/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/com/eyebrows/video/EyebrowsVideoView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/library/src/main/java/com/eyebrows/video/EyebrowsVideoView.kt -------------------------------------------------------------------------------- /library/src/main/java/com/eyebrows/video/Size.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/library/src/main/java/com/eyebrows/video/Size.kt -------------------------------------------------------------------------------- /library/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/library/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /library/src/test/java/com/eyebrows/video/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/library/src/test/java/com/eyebrows/video/ExampleUnitTest.java -------------------------------------------------------------------------------- /local.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Moosphan/EyebrowsVideoView/HEAD/local.properties -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':library' 2 | --------------------------------------------------------------------------------