├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── gradle-mvn-push.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── gradle.properties ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── com │ └── bartoszlipinski │ └── recyclerviewheader2 │ └── RecyclerViewHeader.java ├── sample ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── bartoszlipinski │ │ └── recyclerviewheader2 │ │ └── sample │ │ ├── activity │ │ └── MainActivity.java │ │ ├── adapter │ │ └── ColorItemsAdapter.java │ │ ├── fragment │ │ ├── SampleGridFragment.java │ │ ├── SampleListFragment.java │ │ └── SampleListReversedFragment.java │ │ └── utilities │ │ └── ValueInterpolator.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── drawable │ ├── round_background_green.xml │ └── rounded_background_header.xml │ ├── layout │ ├── activity_main.xml │ ├── fragment_sample.xml │ ├── fragment_sample_reversed.xml │ └── layout_item.xml │ └── values │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/README.md -------------------------------------------------------------------------------- /gradle-mvn-push.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/gradle-mvn-push.gradle -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/library/gradle.properties -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/com/bartoszlipinski/recyclerviewheader2/RecyclerViewHeader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/library/src/main/java/com/bartoszlipinski/recyclerviewheader2/RecyclerViewHeader.java -------------------------------------------------------------------------------- /sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/build.gradle -------------------------------------------------------------------------------- /sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/proguard-rules.pro -------------------------------------------------------------------------------- /sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /sample/src/main/java/com/bartoszlipinski/recyclerviewheader2/sample/activity/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/java/com/bartoszlipinski/recyclerviewheader2/sample/activity/MainActivity.java -------------------------------------------------------------------------------- /sample/src/main/java/com/bartoszlipinski/recyclerviewheader2/sample/adapter/ColorItemsAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/java/com/bartoszlipinski/recyclerviewheader2/sample/adapter/ColorItemsAdapter.java -------------------------------------------------------------------------------- /sample/src/main/java/com/bartoszlipinski/recyclerviewheader2/sample/fragment/SampleGridFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/java/com/bartoszlipinski/recyclerviewheader2/sample/fragment/SampleGridFragment.java -------------------------------------------------------------------------------- /sample/src/main/java/com/bartoszlipinski/recyclerviewheader2/sample/fragment/SampleListFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/java/com/bartoszlipinski/recyclerviewheader2/sample/fragment/SampleListFragment.java -------------------------------------------------------------------------------- /sample/src/main/java/com/bartoszlipinski/recyclerviewheader2/sample/fragment/SampleListReversedFragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/java/com/bartoszlipinski/recyclerviewheader2/sample/fragment/SampleListReversedFragment.java -------------------------------------------------------------------------------- /sample/src/main/java/com/bartoszlipinski/recyclerviewheader2/sample/utilities/ValueInterpolator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/java/com/bartoszlipinski/recyclerviewheader2/sample/utilities/ValueInterpolator.java -------------------------------------------------------------------------------- /sample/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /sample/src/main/res/drawable/round_background_green.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/res/drawable/round_background_green.xml -------------------------------------------------------------------------------- /sample/src/main/res/drawable/rounded_background_header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/res/drawable/rounded_background_header.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/fragment_sample.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/res/layout/fragment_sample.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/fragment_sample_reversed.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/res/layout/fragment_sample_reversed.xml -------------------------------------------------------------------------------- /sample/src/main/res/layout/layout_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/res/layout/layout_item.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blipinsk/RecyclerViewHeader/HEAD/sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':library', ':sample' 2 | --------------------------------------------------------------------------------