├── .gitignore ├── LICENSE ├── README-CN.md ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── fangxu │ │ └── dragfooterview │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── fangxu │ │ └── dragfooterview │ │ ├── Constants.java │ │ ├── CustomFooters │ │ ├── ArrowPathFooterDrawer.java │ │ └── NormalFooterDrawer.java │ │ ├── HomeActivity.java │ │ ├── ShowMoreActivity.java │ │ ├── adapter │ │ ├── HomeRecyclerAdapter.java │ │ └── ShowMoreAdapter.java │ │ └── customfooters │ │ └── StoreHousePath.java │ └── res │ ├── drawable-xhdpi │ ├── left_1.png │ └── left_2.png │ ├── layout │ ├── activity_demo.xml │ ├── activity_show_more.xml │ ├── recycler_item.xml │ └── stagger_item.xml │ ├── mipmap-hdpi │ └── ic_launcher.png │ ├── mipmap-mdpi │ └── ic_launcher.png │ ├── mipmap-xhdpi │ └── ic_launcher.png │ ├── mipmap-xxhdpi │ └── ic_launcher.png │ └── values │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── library ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── fangxu │ │ └── library │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── fangxu │ │ └── library │ │ ├── DefaultDragChecker.java │ │ ├── DimenUtil.java │ │ ├── DragContainer.java │ │ ├── DragListener.java │ │ ├── IDragChecker.java │ │ └── footer │ │ ├── BaseFooterDrawer.java │ │ ├── BezierFooterDrawer.java │ │ └── IconRotateController.java │ └── res │ ├── drawable-xhdpi │ └── left.png │ └── values │ ├── attrs.xml │ └── strings.xml ├── screenshot ├── custom1.gif ├── custom2.gif ├── demo.gif └── inspiration.gif └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/LICENSE -------------------------------------------------------------------------------- /README-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/README-CN.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/fangxu/dragfooterview/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/androidTest/java/com/fangxu/dragfooterview/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/fangxu/dragfooterview/Constants.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/java/com/fangxu/dragfooterview/Constants.java -------------------------------------------------------------------------------- /app/src/main/java/com/fangxu/dragfooterview/CustomFooters/ArrowPathFooterDrawer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/java/com/fangxu/dragfooterview/CustomFooters/ArrowPathFooterDrawer.java -------------------------------------------------------------------------------- /app/src/main/java/com/fangxu/dragfooterview/CustomFooters/NormalFooterDrawer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/java/com/fangxu/dragfooterview/CustomFooters/NormalFooterDrawer.java -------------------------------------------------------------------------------- /app/src/main/java/com/fangxu/dragfooterview/HomeActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/java/com/fangxu/dragfooterview/HomeActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/fangxu/dragfooterview/ShowMoreActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/java/com/fangxu/dragfooterview/ShowMoreActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/fangxu/dragfooterview/adapter/HomeRecyclerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/java/com/fangxu/dragfooterview/adapter/HomeRecyclerAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/fangxu/dragfooterview/adapter/ShowMoreAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/java/com/fangxu/dragfooterview/adapter/ShowMoreAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/fangxu/dragfooterview/customfooters/StoreHousePath.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/java/com/fangxu/dragfooterview/customfooters/StoreHousePath.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/left_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/res/drawable-xhdpi/left_1.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/left_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/res/drawable-xhdpi/left_2.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/res/layout/activity_demo.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_show_more.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/res/layout/activity_show_more.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/recycler_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/res/layout/recycler_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/stagger_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/res/layout/stagger_item.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/library/build.gradle -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/androidTest/java/com/fangxu/library/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/library/src/androidTest/java/com/fangxu/library/ApplicationTest.java -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/com/fangxu/library/DefaultDragChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/library/src/main/java/com/fangxu/library/DefaultDragChecker.java -------------------------------------------------------------------------------- /library/src/main/java/com/fangxu/library/DimenUtil.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/library/src/main/java/com/fangxu/library/DimenUtil.java -------------------------------------------------------------------------------- /library/src/main/java/com/fangxu/library/DragContainer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/library/src/main/java/com/fangxu/library/DragContainer.java -------------------------------------------------------------------------------- /library/src/main/java/com/fangxu/library/DragListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/library/src/main/java/com/fangxu/library/DragListener.java -------------------------------------------------------------------------------- /library/src/main/java/com/fangxu/library/IDragChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/library/src/main/java/com/fangxu/library/IDragChecker.java -------------------------------------------------------------------------------- /library/src/main/java/com/fangxu/library/footer/BaseFooterDrawer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/library/src/main/java/com/fangxu/library/footer/BaseFooterDrawer.java -------------------------------------------------------------------------------- /library/src/main/java/com/fangxu/library/footer/BezierFooterDrawer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/library/src/main/java/com/fangxu/library/footer/BezierFooterDrawer.java -------------------------------------------------------------------------------- /library/src/main/java/com/fangxu/library/footer/IconRotateController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/library/src/main/java/com/fangxu/library/footer/IconRotateController.java -------------------------------------------------------------------------------- /library/src/main/res/drawable-xhdpi/left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/library/src/main/res/drawable-xhdpi/left.png -------------------------------------------------------------------------------- /library/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/library/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /screenshot/custom1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/screenshot/custom1.gif -------------------------------------------------------------------------------- /screenshot/custom2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/screenshot/custom2.gif -------------------------------------------------------------------------------- /screenshot/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/screenshot/demo.gif -------------------------------------------------------------------------------- /screenshot/inspiration.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/uin3566/DragFooterView/HEAD/screenshot/inspiration.gif -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':library' 2 | --------------------------------------------------------------------------------