├── .gitignore ├── DynamicRecyclerView.iml ├── LICENSE.md ├── README.md ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── du │ │ └── android │ │ └── recyclerview │ │ └── sample │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── du │ │ └── android │ │ └── recyclerview │ │ └── sample │ │ └── DemoActivity.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-v21 │ └── item_bg.xml │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── drawable │ └── item_bg.xml │ ├── layout │ ├── activity_demo.xml │ └── demo_item.xml │ ├── menu │ ├── demo.xml │ └── menu_am.xml │ ├── values-v21 │ └── styles.xml │ ├── values-w820dp │ └── dimens.xml │ └── values │ ├── attrs.xml │ ├── colors.xml │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── core ├── .gitignore ├── build.gradle ├── core.iml ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── du │ │ └── android │ │ └── recyclerview │ │ └── ApplicationTest.java │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── du │ │ └── android │ │ └── recyclerview │ │ ├── DragDropTouchListener.java │ │ ├── ItemTouchListenerAdapter.java │ │ ├── RecyclerViewAdapter.java │ │ └── SwipeToDismissTouchListener.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-mdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── drawable │ └── drag_frame.xml │ ├── values-v21 │ └── styles.xml │ └── values │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/.gitignore -------------------------------------------------------------------------------- /DynamicRecyclerView.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/DynamicRecyclerView.iml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/du/android/recyclerview/sample/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/androidTest/java/com/du/android/recyclerview/sample/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/du/android/recyclerview/sample/DemoActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/java/com/du/android/recyclerview/sample/DemoActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-v21/item_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/res/drawable-v21/item_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/item_bg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/res/drawable/item_bg.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/res/layout/activity_demo.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/demo_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/res/layout/demo_item.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/demo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/res/menu/demo.xml -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_am.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/res/menu/menu_am.xml -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/attrs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/res/values/attrs.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /core/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /core/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/core/build.gradle -------------------------------------------------------------------------------- /core/core.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/core/core.iml -------------------------------------------------------------------------------- /core/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/core/proguard-rules.pro -------------------------------------------------------------------------------- /core/src/androidTest/java/com/du/android/recyclerview/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/core/src/androidTest/java/com/du/android/recyclerview/ApplicationTest.java -------------------------------------------------------------------------------- /core/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/core/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /core/src/main/java/com/du/android/recyclerview/DragDropTouchListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/core/src/main/java/com/du/android/recyclerview/DragDropTouchListener.java -------------------------------------------------------------------------------- /core/src/main/java/com/du/android/recyclerview/ItemTouchListenerAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/core/src/main/java/com/du/android/recyclerview/ItemTouchListenerAdapter.java -------------------------------------------------------------------------------- /core/src/main/java/com/du/android/recyclerview/RecyclerViewAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/core/src/main/java/com/du/android/recyclerview/RecyclerViewAdapter.java -------------------------------------------------------------------------------- /core/src/main/java/com/du/android/recyclerview/SwipeToDismissTouchListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/core/src/main/java/com/du/android/recyclerview/SwipeToDismissTouchListener.java -------------------------------------------------------------------------------- /core/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/core/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /core/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/core/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /core/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/core/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /core/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/core/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /core/src/main/res/drawable/drag_frame.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/core/src/main/res/drawable/drag_frame.xml -------------------------------------------------------------------------------- /core/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/core/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /core/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/core/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /core/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/core/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ismoli/DynamicRecyclerView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':core', ':app' 2 | --------------------------------------------------------------------------------