├── .gitignore ├── .idea ├── .name ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── gradle.xml ├── misc.xml ├── modules.xml ├── scopes │ └── scope_settings.xml └── vcs.xml ├── README.md ├── ViewDragHelper.iml ├── app ├── .gitignore ├── app.iml ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── jacob │ │ └── viewdraghelper │ │ ├── MainActivity.java │ │ ├── lesson1 │ │ ├── DragLayoutOne.java │ │ └── LessonOneActivity.java │ │ ├── lesson2 │ │ ├── DragLayoutTwo.java │ │ └── LessonTwoActivity.java │ │ ├── lesson3 │ │ ├── DragLayoutThree.java │ │ └── LessonThreeActivity.java │ │ ├── lesson4 │ │ ├── DragLayoutFour.java │ │ └── LessonFourActivity.java │ │ └── lesson5 │ │ ├── DragLayoutFive.java │ │ └── LessonFiveActivity.java │ └── res │ ├── drawable-hdpi │ └── ic_launcher.png │ ├── drawable-xhdpi │ └── ic_launcher.png │ ├── drawable-xxhdpi │ └── ic_launcher.png │ ├── layout │ ├── activity_lesson_five.xml │ ├── activity_lesson_four.xml │ ├── activity_lesson_one.xml │ ├── activity_lesson_three.xml │ ├── activity_lesson_two.xml │ ├── activity_main.xml │ ├── layout_lesson5_item.xml │ └── layout_list_item.xml │ └── values │ ├── dimens.xml │ ├── strings.xml │ └── styles.xml ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── lesson0.png ├── lesson1.png ├── lesson2.png ├── lesson3.png ├── lesson4.png ├── lesson5.png └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | ViewDragHelper -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/.idea/copyright/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/.idea/encodings.xml -------------------------------------------------------------------------------- /.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/.idea/gradle.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/README.md -------------------------------------------------------------------------------- /ViewDragHelper.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/ViewDragHelper.iml -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/app.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/app.iml -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/jacob/viewdraghelper/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/java/com/jacob/viewdraghelper/MainActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/jacob/viewdraghelper/lesson1/DragLayoutOne.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/java/com/jacob/viewdraghelper/lesson1/DragLayoutOne.java -------------------------------------------------------------------------------- /app/src/main/java/com/jacob/viewdraghelper/lesson1/LessonOneActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/java/com/jacob/viewdraghelper/lesson1/LessonOneActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/jacob/viewdraghelper/lesson2/DragLayoutTwo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/java/com/jacob/viewdraghelper/lesson2/DragLayoutTwo.java -------------------------------------------------------------------------------- /app/src/main/java/com/jacob/viewdraghelper/lesson2/LessonTwoActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/java/com/jacob/viewdraghelper/lesson2/LessonTwoActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/jacob/viewdraghelper/lesson3/DragLayoutThree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/java/com/jacob/viewdraghelper/lesson3/DragLayoutThree.java -------------------------------------------------------------------------------- /app/src/main/java/com/jacob/viewdraghelper/lesson3/LessonThreeActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/java/com/jacob/viewdraghelper/lesson3/LessonThreeActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/jacob/viewdraghelper/lesson4/DragLayoutFour.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/java/com/jacob/viewdraghelper/lesson4/DragLayoutFour.java -------------------------------------------------------------------------------- /app/src/main/java/com/jacob/viewdraghelper/lesson4/LessonFourActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/java/com/jacob/viewdraghelper/lesson4/LessonFourActivity.java -------------------------------------------------------------------------------- /app/src/main/java/com/jacob/viewdraghelper/lesson5/DragLayoutFive.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/java/com/jacob/viewdraghelper/lesson5/DragLayoutFive.java -------------------------------------------------------------------------------- /app/src/main/java/com/jacob/viewdraghelper/lesson5/LessonFiveActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/java/com/jacob/viewdraghelper/lesson5/LessonFiveActivity.java -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_lesson_five.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/res/layout/activity_lesson_five.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_lesson_four.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/res/layout/activity_lesson_four.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_lesson_one.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/res/layout/activity_lesson_one.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_lesson_three.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/res/layout/activity_lesson_three.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_lesson_two.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/res/layout/activity_lesson_two.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/layout_lesson5_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/res/layout/layout_lesson5_item.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/layout_list_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/res/layout/layout_list_item.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/gradlew.bat -------------------------------------------------------------------------------- /lesson0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/lesson0.png -------------------------------------------------------------------------------- /lesson1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/lesson1.png -------------------------------------------------------------------------------- /lesson2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/lesson2.png -------------------------------------------------------------------------------- /lesson3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/lesson3.png -------------------------------------------------------------------------------- /lesson4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/lesson4.png -------------------------------------------------------------------------------- /lesson5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wangjia55/ViewDragHelper/HEAD/lesson5.png -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app' 2 | --------------------------------------------------------------------------------