├── .gitignore ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── headerfooter │ │ └── songhang │ │ └── smartheaderfooterrecyclerview │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── headerfooter │ │ │ └── songhang │ │ │ └── smartheaderfooterrecyclerview │ │ │ └── MainActivity.java │ └── res │ │ ├── layout │ │ └── activity_main.xml │ │ ├── menu │ │ └── main.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── headerfooter │ └── songhang │ └── smartheaderfooterrecyclerview │ └── ExampleUnitTest.java ├── bintray.gradle ├── demo └── smart.apk ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── screenshot ├── hammerheadMRA58Nsonghang04272016134831.gif └── screen.png ├── settings.gradle └── smart-headerfooter-recyclerview ├── .gitignore ├── build.gradle ├── gradle.properties ├── proguard-rules.pro └── src ├── androidTest └── java │ └── com │ └── headerfooter │ └── songhang │ └── library │ └── ApplicationTest.java ├── main ├── AndroidManifest.xml ├── java │ └── com │ │ └── headerfooter │ │ └── songhang │ │ └── library │ │ ├── RecyclerViewAdapterWrapper.java │ │ └── SmartRecyclerAdapter.java └── res │ └── values │ └── strings.xml └── test └── java └── com └── headerfooter └── songhang └── library └── ExampleUnitTest.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/headerfooter/songhang/smartheaderfooterrecyclerview/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/src/androidTest/java/com/headerfooter/songhang/smartheaderfooterrecyclerview/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/headerfooter/songhang/smartheaderfooterrecyclerview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/src/main/java/com/headerfooter/songhang/smartheaderfooterrecyclerview/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/headerfooter/songhang/smartheaderfooterrecyclerview/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/app/src/test/java/com/headerfooter/songhang/smartheaderfooterrecyclerview/ExampleUnitTest.java -------------------------------------------------------------------------------- /bintray.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/bintray.gradle -------------------------------------------------------------------------------- /demo/smart.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/demo/smart.apk -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /screenshot/hammerheadMRA58Nsonghang04272016134831.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/screenshot/hammerheadMRA58Nsonghang04272016134831.gif -------------------------------------------------------------------------------- /screenshot/screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/screenshot/screen.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':smart-headerfooter-recyclerview' 2 | -------------------------------------------------------------------------------- /smart-headerfooter-recyclerview/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /smart-headerfooter-recyclerview/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/smart-headerfooter-recyclerview/build.gradle -------------------------------------------------------------------------------- /smart-headerfooter-recyclerview/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/smart-headerfooter-recyclerview/gradle.properties -------------------------------------------------------------------------------- /smart-headerfooter-recyclerview/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/smart-headerfooter-recyclerview/proguard-rules.pro -------------------------------------------------------------------------------- /smart-headerfooter-recyclerview/src/androidTest/java/com/headerfooter/songhang/library/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/smart-headerfooter-recyclerview/src/androidTest/java/com/headerfooter/songhang/library/ApplicationTest.java -------------------------------------------------------------------------------- /smart-headerfooter-recyclerview/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/smart-headerfooter-recyclerview/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /smart-headerfooter-recyclerview/src/main/java/com/headerfooter/songhang/library/RecyclerViewAdapterWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/smart-headerfooter-recyclerview/src/main/java/com/headerfooter/songhang/library/RecyclerViewAdapterWrapper.java -------------------------------------------------------------------------------- /smart-headerfooter-recyclerview/src/main/java/com/headerfooter/songhang/library/SmartRecyclerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/smart-headerfooter-recyclerview/src/main/java/com/headerfooter/songhang/library/SmartRecyclerAdapter.java -------------------------------------------------------------------------------- /smart-headerfooter-recyclerview/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/smart-headerfooter-recyclerview/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /smart-headerfooter-recyclerview/src/test/java/com/headerfooter/songhang/library/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songhanghang/Smart-HeaderFooter-RecyclerView/HEAD/smart-headerfooter-recyclerview/src/test/java/com/headerfooter/songhang/library/ExampleUnitTest.java --------------------------------------------------------------------------------