├── .gitignore ├── .idea ├── codeStyles │ └── Project.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── wellijohn │ │ └── org │ │ └── scrollviewwithstickview │ │ ├── AndroidWidgetActivity.java │ │ ├── LinearLayoutManagerUnScrollable.java │ │ ├── Main2Activity.java │ │ ├── MainActivity.java │ │ ├── adapter │ │ ├── RVRightListAdapter.java │ │ ├── ReListAdapter.java │ │ └── TabFragmentAdapter.java │ │ ├── constant │ │ └── Constant.java │ │ ├── fragment │ │ ├── ChildRecyclerViewFragment.java │ │ ├── ChildScrollViewFragment.java │ │ ├── LazyFragment.java │ │ ├── NoScrollWebView.java │ │ └── RecyclerViewFragment.java │ │ └── listener │ │ └── OnRVItemClickListener.java │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable-xxhdpi │ └── food.jpg │ ├── drawable │ ├── btn_border_gray_999_bg.xml │ ├── btn_green_big_nomal_bg.xml │ ├── btn_yellow_full_small_corner_bg.xml │ └── ic_launcher_background.xml │ ├── layout │ ├── activity_android_widget.xml │ ├── activity_main.xml │ ├── activity_main2.xml │ ├── demo_child_scroll.xml │ ├── just_recyclerview.xml │ ├── recyclerview.xml │ ├── rv_item.xml │ ├── rv_rightitem.xml │ └── title.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-mdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ ├── mipmap-xxxhdpi │ ├── ic_launcher.png │ └── ic_launcher_round.png │ └── values │ ├── arrays.xml │ ├── colors.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── imgs ├── QR_code_258 .png ├── scrollsnap.gif ├── snapshot2.gif └── 仿饿了么列表页.gif ├── settings.gradle └── stickscrollview ├── .gitignore ├── build.gradle ├── jcenter.gradle ├── proguard-rules.pro └── src └── main ├── AndroidManifest.xml ├── java └── wellijohn │ └── org │ └── scrollviewwithstickheader │ ├── ChildRecyclerView.java │ ├── ChildScrollView.java │ ├── ChildWebView.java │ ├── Constant.java │ ├── ScrollViewWithStickHeader.java │ ├── layoutmanager │ ├── NoSlideGridLayoutManager.java │ └── NoSlideLinearLayoutManager.java │ └── utils │ ├── UIUtil.java │ └── ViewUtil.java └── res └── values ├── attrs.xml └── strings.xml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/wellijohn/org/scrollviewwithstickview/AndroidWidgetActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/java/wellijohn/org/scrollviewwithstickview/AndroidWidgetActivity.java -------------------------------------------------------------------------------- /app/src/main/java/wellijohn/org/scrollviewwithstickview/LinearLayoutManagerUnScrollable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/java/wellijohn/org/scrollviewwithstickview/LinearLayoutManagerUnScrollable.java -------------------------------------------------------------------------------- /app/src/main/java/wellijohn/org/scrollviewwithstickview/Main2Activity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/java/wellijohn/org/scrollviewwithstickview/Main2Activity.java -------------------------------------------------------------------------------- /app/src/main/java/wellijohn/org/scrollviewwithstickview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/java/wellijohn/org/scrollviewwithstickview/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/wellijohn/org/scrollviewwithstickview/adapter/RVRightListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/java/wellijohn/org/scrollviewwithstickview/adapter/RVRightListAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/wellijohn/org/scrollviewwithstickview/adapter/ReListAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/java/wellijohn/org/scrollviewwithstickview/adapter/ReListAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/wellijohn/org/scrollviewwithstickview/adapter/TabFragmentAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/java/wellijohn/org/scrollviewwithstickview/adapter/TabFragmentAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/wellijohn/org/scrollviewwithstickview/constant/Constant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/java/wellijohn/org/scrollviewwithstickview/constant/Constant.java -------------------------------------------------------------------------------- /app/src/main/java/wellijohn/org/scrollviewwithstickview/fragment/ChildRecyclerViewFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/java/wellijohn/org/scrollviewwithstickview/fragment/ChildRecyclerViewFragment.java -------------------------------------------------------------------------------- /app/src/main/java/wellijohn/org/scrollviewwithstickview/fragment/ChildScrollViewFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/java/wellijohn/org/scrollviewwithstickview/fragment/ChildScrollViewFragment.java -------------------------------------------------------------------------------- /app/src/main/java/wellijohn/org/scrollviewwithstickview/fragment/LazyFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/java/wellijohn/org/scrollviewwithstickview/fragment/LazyFragment.java -------------------------------------------------------------------------------- /app/src/main/java/wellijohn/org/scrollviewwithstickview/fragment/NoScrollWebView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/java/wellijohn/org/scrollviewwithstickview/fragment/NoScrollWebView.java -------------------------------------------------------------------------------- /app/src/main/java/wellijohn/org/scrollviewwithstickview/fragment/RecyclerViewFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/java/wellijohn/org/scrollviewwithstickview/fragment/RecyclerViewFragment.java -------------------------------------------------------------------------------- /app/src/main/java/wellijohn/org/scrollviewwithstickview/listener/OnRVItemClickListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/java/wellijohn/org/scrollviewwithstickview/listener/OnRVItemClickListener.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/food.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/drawable-xxhdpi/food.jpg -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_border_gray_999_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/drawable/btn_border_gray_999_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_green_big_nomal_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/drawable/btn_green_big_nomal_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/btn_yellow_full_small_corner_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/drawable/btn_yellow_full_small_corner_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_android_widget.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/layout/activity_android_widget.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main2.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/layout/activity_main2.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/demo_child_scroll.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/layout/demo_child_scroll.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/just_recyclerview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/layout/just_recyclerview.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/recyclerview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/layout/recyclerview.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/rv_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/layout/rv_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/rv_rightitem.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/layout/rv_rightitem.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/title.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/layout/title.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/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/WelliJohn/StickScrollView/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/WelliJohn/StickScrollView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/arrays.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/values/arrays.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /imgs/QR_code_258 .png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/imgs/QR_code_258 .png -------------------------------------------------------------------------------- /imgs/scrollsnap.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/imgs/scrollsnap.gif -------------------------------------------------------------------------------- /imgs/snapshot2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/imgs/snapshot2.gif -------------------------------------------------------------------------------- /imgs/仿饿了么列表页.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/imgs/仿饿了么列表页.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':stickscrollview' 2 | -------------------------------------------------------------------------------- /stickscrollview/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /stickscrollview/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/stickscrollview/build.gradle -------------------------------------------------------------------------------- /stickscrollview/jcenter.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/stickscrollview/jcenter.gradle -------------------------------------------------------------------------------- /stickscrollview/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/stickscrollview/proguard-rules.pro -------------------------------------------------------------------------------- /stickscrollview/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/stickscrollview/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/ChildRecyclerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/ChildRecyclerView.java -------------------------------------------------------------------------------- /stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/ChildScrollView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/ChildScrollView.java -------------------------------------------------------------------------------- /stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/ChildWebView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/ChildWebView.java -------------------------------------------------------------------------------- /stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/Constant.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/Constant.java -------------------------------------------------------------------------------- /stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/ScrollViewWithStickHeader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/ScrollViewWithStickHeader.java -------------------------------------------------------------------------------- /stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/layoutmanager/NoSlideGridLayoutManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/layoutmanager/NoSlideGridLayoutManager.java -------------------------------------------------------------------------------- /stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/layoutmanager/NoSlideLinearLayoutManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/layoutmanager/NoSlideLinearLayoutManager.java -------------------------------------------------------------------------------- /stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/utils/UIUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/utils/UIUtil.java -------------------------------------------------------------------------------- /stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/utils/ViewUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/stickscrollview/src/main/java/wellijohn/org/scrollviewwithstickheader/utils/ViewUtil.java -------------------------------------------------------------------------------- /stickscrollview/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/stickscrollview/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /stickscrollview/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WelliJohn/StickScrollView/HEAD/stickscrollview/src/main/res/values/strings.xml --------------------------------------------------------------------------------