├── README.md └── recyclerview_helper ├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml ├── misc.xml ├── modules.xml └── runConfigurations.xml ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── lvr │ │ └── recyclerview_helper │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── lvr │ │ │ └── recyclerview_helper │ │ │ └── sample │ │ │ ├── AllActivity.java │ │ │ ├── ClassicRefreshHeaderView.java │ │ │ ├── LoadMoreFooterView.java │ │ │ └── MainActivity.java │ └── res │ │ ├── anim │ │ ├── rotate_down.xml │ │ └── rotate_up.xml │ │ ├── drawable │ │ ├── image1.jpg │ │ ├── image2.png │ │ ├── image3.jpg │ │ ├── image4.jpg │ │ ├── image5.jpg │ │ ├── image6.jpg │ │ ├── image_icon.jpeg │ │ └── multi_image.jpg │ │ ├── layout │ │ ├── activity_all.xml │ │ ├── activity_main.xml │ │ ├── item_common.xml │ │ ├── item_foot.xml │ │ ├── item_head.xml │ │ ├── item_special.xml │ │ ├── layout_hrecyclerview_classic_refresh_header_view.xml │ │ ├── layout_hrecyclerview_load_more_footer.xml │ │ ├── layout_hrecyclerview_load_more_footer_error_view.xml │ │ ├── layout_hrecyclerview_load_more_footer_loading_view.xml │ │ ├── layout_hrecyclerview_load_more_footer_the_end_view.xml │ │ ├── layout_hrecyclerview_load_more_footer_view.xml │ │ └── layout_hrecyclerview_refresh_header.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.png │ │ ├── qq_refresh_success.png │ │ ├── twitter_pull_arrow.png │ │ └── twitter_pull_arrow_white.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── lvr │ └── recyclerview_helper │ └── ExampleUnitTest.java ├── build.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── lvr │ │ └── library │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── lvr │ │ │ └── library │ │ │ ├── adapter │ │ │ ├── CommonAdapter.java │ │ │ └── MultiItemCommonAdapter.java │ │ │ ├── anims │ │ │ ├── adapters │ │ │ │ ├── AlphaInAnimationAdapter.java │ │ │ │ ├── AnimationAdapter.java │ │ │ │ ├── ScaleInAnimationAdapter.java │ │ │ │ ├── SlideInBottomAnimationAdapter.java │ │ │ │ ├── SlideInLeftAnimationAdapter.java │ │ │ │ └── SlideInRightAnimationAdapter.java │ │ │ └── animators │ │ │ │ ├── BaseItemAnimator.java │ │ │ │ ├── FadeInAnimator.java │ │ │ │ ├── FadeInDownAnimator.java │ │ │ │ ├── FadeInLeftAnimator.java │ │ │ │ ├── FadeInRightAnimator.java │ │ │ │ ├── FadeInUpAnimator.java │ │ │ │ ├── FlipInBottomXAnimator.java │ │ │ │ ├── FlipInLeftYAnimator.java │ │ │ │ ├── FlipInRightYAnimator.java │ │ │ │ ├── FlipInTopXAnimator.java │ │ │ │ ├── LandingAnimator.java │ │ │ │ ├── OvershootInLeftAnimator.java │ │ │ │ ├── OvershootInRightAnimator.java │ │ │ │ ├── ScaleInAnimator.java │ │ │ │ ├── ScaleInBottomAnimator.java │ │ │ │ ├── ScaleInLeftAnimator.java │ │ │ │ ├── ScaleInRightAnimator.java │ │ │ │ ├── ScaleInTopAnimator.java │ │ │ │ ├── SlideInDownAnimator.java │ │ │ │ ├── SlideInLeftAnimator.java │ │ │ │ ├── SlideInRightAnimator.java │ │ │ │ ├── SlideInUpAnimator.java │ │ │ │ ├── ViewHelper.java │ │ │ │ └── holder │ │ │ │ └── AnimateViewHolder.java │ │ │ ├── holder │ │ │ └── BaseViewHolder.java │ │ │ ├── recyclerview │ │ │ ├── HRecyclerView.java │ │ │ ├── OnLoadMoreListener.java │ │ │ ├── OnLoadMoreScrollListener.java │ │ │ ├── OnRefreshListener.java │ │ │ ├── RefreshHeaderLayout.java │ │ │ ├── RefreshTrigger.java │ │ │ ├── SimpleAnimatorListener.java │ │ │ └── WrapperAdapter.java │ │ │ └── support │ │ │ └── MultiItemTypeSupport.java │ └── res │ │ ├── attrs.xml │ │ └── values │ │ ├── attrs.xml │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── lvr │ └── library │ └── ExampleUnitTest.java └── settings.gradle /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/README.md -------------------------------------------------------------------------------- /recyclerview_helper/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/.gitignore -------------------------------------------------------------------------------- /recyclerview_helper/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/.idea/compiler.xml -------------------------------------------------------------------------------- /recyclerview_helper/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /recyclerview_helper/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/.idea/encodings.xml -------------------------------------------------------------------------------- /recyclerview_helper/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/.idea/gradle.xml -------------------------------------------------------------------------------- /recyclerview_helper/.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /recyclerview_helper/.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /recyclerview_helper/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/.idea/misc.xml -------------------------------------------------------------------------------- /recyclerview_helper/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/.idea/modules.xml -------------------------------------------------------------------------------- /recyclerview_helper/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /recyclerview_helper/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/build.gradle -------------------------------------------------------------------------------- /recyclerview_helper/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/proguard-rules.pro -------------------------------------------------------------------------------- /recyclerview_helper/app/src/androidTest/java/com/lvr/recyclerview_helper/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/androidTest/java/com/lvr/recyclerview_helper/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/java/com/lvr/recyclerview_helper/sample/AllActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/java/com/lvr/recyclerview_helper/sample/AllActivity.java -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/java/com/lvr/recyclerview_helper/sample/ClassicRefreshHeaderView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/java/com/lvr/recyclerview_helper/sample/ClassicRefreshHeaderView.java -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/java/com/lvr/recyclerview_helper/sample/LoadMoreFooterView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/java/com/lvr/recyclerview_helper/sample/LoadMoreFooterView.java -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/java/com/lvr/recyclerview_helper/sample/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/java/com/lvr/recyclerview_helper/sample/MainActivity.java -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/anim/rotate_down.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/anim/rotate_down.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/anim/rotate_up.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/anim/rotate_up.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/drawable/image1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/drawable/image1.jpg -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/drawable/image2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/drawable/image2.png -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/drawable/image3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/drawable/image3.jpg -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/drawable/image4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/drawable/image4.jpg -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/drawable/image5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/drawable/image5.jpg -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/drawable/image6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/drawable/image6.jpg -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/drawable/image_icon.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/drawable/image_icon.jpeg -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/drawable/multi_image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/drawable/multi_image.jpg -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/layout/activity_all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/layout/activity_all.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/layout/item_common.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/layout/item_common.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/layout/item_foot.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/layout/item_foot.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/layout/item_head.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/layout/item_head.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/layout/item_special.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/layout/item_special.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/layout/layout_hrecyclerview_classic_refresh_header_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/layout/layout_hrecyclerview_classic_refresh_header_view.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/layout/layout_hrecyclerview_load_more_footer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/layout/layout_hrecyclerview_load_more_footer.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/layout/layout_hrecyclerview_load_more_footer_error_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/layout/layout_hrecyclerview_load_more_footer_error_view.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/layout/layout_hrecyclerview_load_more_footer_loading_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/layout/layout_hrecyclerview_load_more_footer_loading_view.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/layout/layout_hrecyclerview_load_more_footer_the_end_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/layout/layout_hrecyclerview_load_more_footer_the_end_view.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/layout/layout_hrecyclerview_load_more_footer_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/layout/layout_hrecyclerview_load_more_footer_view.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/layout/layout_hrecyclerview_refresh_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/layout/layout_hrecyclerview_refresh_header.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/mipmap-xxhdpi/qq_refresh_success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/mipmap-xxhdpi/qq_refresh_success.png -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/mipmap-xxhdpi/twitter_pull_arrow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/mipmap-xxhdpi/twitter_pull_arrow.png -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/mipmap-xxhdpi/twitter_pull_arrow_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/mipmap-xxhdpi/twitter_pull_arrow_white.png -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /recyclerview_helper/app/src/test/java/com/lvr/recyclerview_helper/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/app/src/test/java/com/lvr/recyclerview_helper/ExampleUnitTest.java -------------------------------------------------------------------------------- /recyclerview_helper/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/build.gradle -------------------------------------------------------------------------------- /recyclerview_helper/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/gradle.properties -------------------------------------------------------------------------------- /recyclerview_helper/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /recyclerview_helper/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /recyclerview_helper/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/gradlew -------------------------------------------------------------------------------- /recyclerview_helper/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/gradlew.bat -------------------------------------------------------------------------------- /recyclerview_helper/library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /recyclerview_helper/library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/build.gradle -------------------------------------------------------------------------------- /recyclerview_helper/library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/proguard-rules.pro -------------------------------------------------------------------------------- /recyclerview_helper/library/src/androidTest/java/com/lvr/library/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/androidTest/java/com/lvr/library/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/adapter/CommonAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/adapter/CommonAdapter.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/adapter/MultiItemCommonAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/adapter/MultiItemCommonAdapter.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/adapters/AlphaInAnimationAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/adapters/AlphaInAnimationAdapter.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/adapters/AnimationAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/adapters/AnimationAdapter.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/adapters/ScaleInAnimationAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/adapters/ScaleInAnimationAdapter.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/adapters/SlideInBottomAnimationAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/adapters/SlideInBottomAnimationAdapter.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/adapters/SlideInLeftAnimationAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/adapters/SlideInLeftAnimationAdapter.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/adapters/SlideInRightAnimationAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/adapters/SlideInRightAnimationAdapter.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/BaseItemAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/BaseItemAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FadeInAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FadeInAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FadeInDownAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FadeInDownAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FadeInLeftAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FadeInLeftAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FadeInRightAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FadeInRightAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FadeInUpAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FadeInUpAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FlipInBottomXAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FlipInBottomXAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FlipInLeftYAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FlipInLeftYAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FlipInRightYAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FlipInRightYAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FlipInTopXAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/FlipInTopXAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/LandingAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/LandingAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/OvershootInLeftAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/OvershootInLeftAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/OvershootInRightAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/OvershootInRightAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/ScaleInAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/ScaleInAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/ScaleInBottomAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/ScaleInBottomAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/ScaleInLeftAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/ScaleInLeftAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/ScaleInRightAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/ScaleInRightAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/ScaleInTopAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/ScaleInTopAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/SlideInDownAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/SlideInDownAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/SlideInLeftAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/SlideInLeftAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/SlideInRightAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/SlideInRightAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/SlideInUpAnimator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/SlideInUpAnimator.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/ViewHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/ViewHelper.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/holder/AnimateViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/anims/animators/holder/AnimateViewHolder.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/holder/BaseViewHolder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/holder/BaseViewHolder.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/recyclerview/HRecyclerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/recyclerview/HRecyclerView.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/recyclerview/OnLoadMoreListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/recyclerview/OnLoadMoreListener.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/recyclerview/OnLoadMoreScrollListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/recyclerview/OnLoadMoreScrollListener.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/recyclerview/OnRefreshListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/recyclerview/OnRefreshListener.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/recyclerview/RefreshHeaderLayout.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/recyclerview/RefreshHeaderLayout.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/recyclerview/RefreshTrigger.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/recyclerview/RefreshTrigger.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/recyclerview/SimpleAnimatorListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/recyclerview/SimpleAnimatorListener.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/recyclerview/WrapperAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/recyclerview/WrapperAdapter.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/java/com/lvr/library/support/MultiItemTypeSupport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/java/com/lvr/library/support/MultiItemTypeSupport.java -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/res/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/res/attrs.xml -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /recyclerview_helper/library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /recyclerview_helper/library/src/test/java/com/lvr/library/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LRH1993/recyclerview_helper/HEAD/recyclerview_helper/library/src/test/java/com/lvr/library/ExampleUnitTest.java -------------------------------------------------------------------------------- /recyclerview_helper/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':library' 2 | --------------------------------------------------------------------------------