├── .gitignore ├── .idea ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── runConfigurations.xml └── vcs.xml ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── qianmo │ │ └── dragrecyclerview │ │ └── ExampleInstrumentedTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── qianmo │ │ │ └── dragrecyclerview │ │ │ ├── DividerGridItemDecoration.java │ │ │ ├── DividerItemDecoration.java │ │ │ ├── MainActivity.java │ │ │ ├── MyAdapter.java │ │ │ ├── OnRecyclerItemClickListener.java │ │ │ ├── Subject.java │ │ │ └── SwipeRecyclerView.java │ └── res │ │ ├── layout │ │ ├── activity_main.xml │ │ ├── item_grid.xml │ │ └── item_linear.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.png │ │ └── ic_launcher_round.png │ │ ├── mipmap-xhdpi │ │ ├── ic_category_0.png │ │ ├── ic_category_1.png │ │ ├── ic_category_10.png │ │ ├── ic_category_11.png │ │ ├── ic_category_12.png │ │ ├── ic_category_13.png │ │ ├── ic_category_14.png │ │ ├── ic_category_15.png │ │ ├── ic_category_16.png │ │ ├── ic_category_17.png │ │ ├── ic_category_18.png │ │ ├── ic_category_19.png │ │ ├── ic_category_2.png │ │ ├── ic_category_20.png │ │ ├── ic_category_21.png │ │ ├── ic_category_22.png │ │ ├── ic_category_23.png │ │ ├── ic_category_24.png │ │ ├── ic_category_25.png │ │ ├── ic_category_26.png │ │ ├── ic_category_27.png │ │ ├── ic_category_28.png │ │ ├── ic_category_29.png │ │ ├── ic_category_3.png │ │ ├── ic_category_30.png │ │ ├── ic_category_31.png │ │ ├── ic_category_32.png │ │ ├── ic_category_33.png │ │ ├── ic_category_4.png │ │ ├── ic_category_5.png │ │ ├── ic_category_6.png │ │ ├── ic_category_7.png │ │ ├── ic_category_8.png │ │ ├── ic_category_9.png │ │ ├── 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 │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── com │ └── qianmo │ └── dragrecyclerview │ └── ExampleUnitTest.java ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/qianmo/dragrecyclerview/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/androidTest/java/com/qianmo/dragrecyclerview/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/qianmo/dragrecyclerview/DividerGridItemDecoration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/java/com/qianmo/dragrecyclerview/DividerGridItemDecoration.java -------------------------------------------------------------------------------- /app/src/main/java/com/qianmo/dragrecyclerview/DividerItemDecoration.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/java/com/qianmo/dragrecyclerview/DividerItemDecoration.java -------------------------------------------------------------------------------- /app/src/main/java/com/qianmo/dragrecyclerview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/java/com/qianmo/dragrecyclerview/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/qianmo/dragrecyclerview/MyAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/java/com/qianmo/dragrecyclerview/MyAdapter.java -------------------------------------------------------------------------------- /app/src/main/java/com/qianmo/dragrecyclerview/OnRecyclerItemClickListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/java/com/qianmo/dragrecyclerview/OnRecyclerItemClickListener.java -------------------------------------------------------------------------------- /app/src/main/java/com/qianmo/dragrecyclerview/Subject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/java/com/qianmo/dragrecyclerview/Subject.java -------------------------------------------------------------------------------- /app/src/main/java/com/qianmo/dragrecyclerview/SwipeRecyclerView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/java/com/qianmo/dragrecyclerview/SwipeRecyclerView.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_grid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/layout/item_grid.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/item_linear.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/layout/item_linear.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_0.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_1.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_10.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_11.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_12.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_13.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_14.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_15.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_16.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_17.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_18.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_19.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_2.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_20.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_20.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_21.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_21.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_22.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_23.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_23.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_24.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_25.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_26.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_26.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_27.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_27.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_28.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_28.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_29.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_29.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_3.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_30.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_31.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_31.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_32.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_33.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_33.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_4.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_5.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_6.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_7.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_8.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_category_9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_category_9.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/com/qianmo/dragrecyclerview/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/app/src/test/java/com/qianmo/dragrecyclerview/ExampleUnitTest.java -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/543441727/DragRecyclerView/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------