├── DragGridView ├── .classpath ├── .project ├── .settings │ ├── org.eclipse.core.resources.prefs │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── DragGridViewDemo.gif ├── bin │ ├── AndroidManifest.xml │ ├── DragGridView.apk │ ├── MainActivity.apk │ ├── classes.dex │ ├── classes │ │ ├── .gitignore │ │ └── com │ │ │ └── example │ │ │ ├── draggridview │ │ │ ├── BuildConfig.class │ │ │ ├── DragAdapter.class │ │ │ ├── MainActivity$1.class │ │ │ ├── MainActivity.class │ │ │ ├── R$attr.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ ├── R$style.class │ │ │ └── R.class │ │ │ └── framework │ │ │ ├── DragGridBaseAdapter.class │ │ │ ├── DragGridView$1.class │ │ │ ├── DragGridView$2.class │ │ │ ├── DragGridView$3.class │ │ │ ├── DragGridView$4.class │ │ │ ├── DragGridView$5.class │ │ │ └── DragGridView.class │ ├── dexedLibs │ │ ├── android-support-v4-77c7f7d01ce9da77ecc09f06cbe6ac72.jar │ │ ├── android-support-v4-7ae4ad2cf24ef50b9b5134e71ce2908d.jar │ │ ├── android-support-v4-a64c84fb62b857f1eae12f3f012429e8.jar │ │ ├── android-support-v4-f1c0ee34bce448946e5fa82131d82537.jar │ │ ├── annotations-88526c012249af2de03cb9b5dbb6323c.jar │ │ ├── annotations-d61ec7ddaebf2d34f1578ff33c01adb4.jar │ │ ├── annotations-e932c1c05ad95ccc34ccff222ce9eb78.jar │ │ ├── nineoldanimatin-336dd6a69cc04a33040d61e3135ce2f1.jar │ │ ├── nineoldanimatin-484cfc6a66fa6cc10c85a411e295e583.jar │ │ ├── nineoldanimatin-7d60d753e92ce55071683c172ad9e681.jar │ │ └── nineoldanimatin-b055efc818ef8a3a13854a0c9e1c3b36.jar │ ├── jarlist.cache │ ├── res │ │ ├── crunch │ │ │ ├── drawable-hdpi │ │ │ │ ├── com_tencent_open_notice_msg_icon_big.png │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-ldpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ └── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ ├── drawable-hdpi │ │ │ ├── com_tencent_open_notice_msg_icon_big.png │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ └── drawable-xhdpi │ │ │ └── ic_launcher.png │ └── resources.ap_ ├── gen │ ├── .gitignore │ └── com │ │ └── example │ │ └── draggridview │ │ ├── BuildConfig.java │ │ └── R.java ├── ic_launcher-web.png ├── libs │ ├── android-support-v4.jar │ └── nineoldanimatin.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ ├── com_tencent_open_notice_msg_icon_big.png │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── layout │ │ ├── activity_main.xml │ │ └── grid_item.xml │ └── values │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── example │ ├── draggridview │ ├── DragAdapter.java │ └── MainActivity.java │ └── framework │ ├── DragGridBaseAdapter.java │ └── DragGridView.java └── README.md /DragGridView/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /DragGridView/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | DragGridView 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /DragGridView/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | encoding/=gbk 3 | -------------------------------------------------------------------------------- /DragGridView/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /DragGridView/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /DragGridView/DragGridViewDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/DragGridViewDemo.gif -------------------------------------------------------------------------------- /DragGridView/bin/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 16 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | -------------------------------------------------------------------------------- /DragGridView/bin/DragGridView.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/DragGridView.apk -------------------------------------------------------------------------------- /DragGridView/bin/MainActivity.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/MainActivity.apk -------------------------------------------------------------------------------- /DragGridView/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes.dex -------------------------------------------------------------------------------- /DragGridView/bin/classes/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/draggridview/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/draggridview/BuildConfig.class -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/draggridview/DragAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/draggridview/DragAdapter.class -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/draggridview/MainActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/draggridview/MainActivity$1.class -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/draggridview/MainActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/draggridview/MainActivity.class -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/draggridview/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/draggridview/R$attr.class -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/draggridview/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/draggridview/R$drawable.class -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/draggridview/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/draggridview/R$id.class -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/draggridview/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/draggridview/R$layout.class -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/draggridview/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/draggridview/R$string.class -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/draggridview/R$style.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/draggridview/R$style.class -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/draggridview/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/draggridview/R.class -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/framework/DragGridBaseAdapter.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/framework/DragGridBaseAdapter.class -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/framework/DragGridView$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/framework/DragGridView$1.class -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/framework/DragGridView$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/framework/DragGridView$2.class -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/framework/DragGridView$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/framework/DragGridView$3.class -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/framework/DragGridView$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/framework/DragGridView$4.class -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/framework/DragGridView$5.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/framework/DragGridView$5.class -------------------------------------------------------------------------------- /DragGridView/bin/classes/com/example/framework/DragGridView.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/classes/com/example/framework/DragGridView.class -------------------------------------------------------------------------------- /DragGridView/bin/dexedLibs/android-support-v4-77c7f7d01ce9da77ecc09f06cbe6ac72.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/dexedLibs/android-support-v4-77c7f7d01ce9da77ecc09f06cbe6ac72.jar -------------------------------------------------------------------------------- /DragGridView/bin/dexedLibs/android-support-v4-7ae4ad2cf24ef50b9b5134e71ce2908d.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/dexedLibs/android-support-v4-7ae4ad2cf24ef50b9b5134e71ce2908d.jar -------------------------------------------------------------------------------- /DragGridView/bin/dexedLibs/android-support-v4-a64c84fb62b857f1eae12f3f012429e8.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/dexedLibs/android-support-v4-a64c84fb62b857f1eae12f3f012429e8.jar -------------------------------------------------------------------------------- /DragGridView/bin/dexedLibs/android-support-v4-f1c0ee34bce448946e5fa82131d82537.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/dexedLibs/android-support-v4-f1c0ee34bce448946e5fa82131d82537.jar -------------------------------------------------------------------------------- /DragGridView/bin/dexedLibs/annotations-88526c012249af2de03cb9b5dbb6323c.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/dexedLibs/annotations-88526c012249af2de03cb9b5dbb6323c.jar -------------------------------------------------------------------------------- /DragGridView/bin/dexedLibs/annotations-d61ec7ddaebf2d34f1578ff33c01adb4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/dexedLibs/annotations-d61ec7ddaebf2d34f1578ff33c01adb4.jar -------------------------------------------------------------------------------- /DragGridView/bin/dexedLibs/annotations-e932c1c05ad95ccc34ccff222ce9eb78.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/dexedLibs/annotations-e932c1c05ad95ccc34ccff222ce9eb78.jar -------------------------------------------------------------------------------- /DragGridView/bin/dexedLibs/nineoldanimatin-336dd6a69cc04a33040d61e3135ce2f1.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/dexedLibs/nineoldanimatin-336dd6a69cc04a33040d61e3135ce2f1.jar -------------------------------------------------------------------------------- /DragGridView/bin/dexedLibs/nineoldanimatin-484cfc6a66fa6cc10c85a411e295e583.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/dexedLibs/nineoldanimatin-484cfc6a66fa6cc10c85a411e295e583.jar -------------------------------------------------------------------------------- /DragGridView/bin/dexedLibs/nineoldanimatin-7d60d753e92ce55071683c172ad9e681.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/dexedLibs/nineoldanimatin-7d60d753e92ce55071683c172ad9e681.jar -------------------------------------------------------------------------------- /DragGridView/bin/dexedLibs/nineoldanimatin-b055efc818ef8a3a13854a0c9e1c3b36.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/dexedLibs/nineoldanimatin-b055efc818ef8a3a13854a0c9e1c3b36.jar -------------------------------------------------------------------------------- /DragGridView/bin/jarlist.cache: -------------------------------------------------------------------------------- 1 | # cache for current jar dependency. DO NOT EDIT. 2 | # format is 3 | # Encoding is UTF-8 4 | -------------------------------------------------------------------------------- /DragGridView/bin/res/crunch/drawable-hdpi/com_tencent_open_notice_msg_icon_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/res/crunch/drawable-hdpi/com_tencent_open_notice_msg_icon_big.png -------------------------------------------------------------------------------- /DragGridView/bin/res/crunch/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/res/crunch/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /DragGridView/bin/res/crunch/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/res/crunch/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /DragGridView/bin/res/crunch/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/res/crunch/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /DragGridView/bin/res/crunch/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/res/crunch/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DragGridView/bin/res/drawable-hdpi/com_tencent_open_notice_msg_icon_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/res/drawable-hdpi/com_tencent_open_notice_msg_icon_big.png -------------------------------------------------------------------------------- /DragGridView/bin/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /DragGridView/bin/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /DragGridView/bin/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /DragGridView/bin/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DragGridView/bin/resources.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/bin/resources.ap_ -------------------------------------------------------------------------------- /DragGridView/gen/.gitignore: -------------------------------------------------------------------------------- 1 | /com/ 2 | -------------------------------------------------------------------------------- /DragGridView/gen/com/example/draggridview/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /** Automatically generated file. DO NOT MODIFY */ 2 | package com.example.draggridview; 3 | 4 | public final class BuildConfig { 5 | public final static boolean DEBUG = true; 6 | } -------------------------------------------------------------------------------- /DragGridView/gen/com/example/draggridview/R.java: -------------------------------------------------------------------------------- 1 | /* AUTO-GENERATED FILE. DO NOT MODIFY. 2 | * 3 | * This class was automatically generated by the 4 | * aapt tool from the resource data it found. It 5 | * should not be modified by hand. 6 | */ 7 | 8 | package com.example.draggridview; 9 | 10 | public final class R { 11 | public static final class attr { 12 | } 13 | public static final class drawable { 14 | public static final int com_tencent_open_notice_msg_icon_big=0x7f020000; 15 | public static final int ic_launcher=0x7f020001; 16 | } 17 | public static final class id { 18 | public static final int dragGridView=0x7f060000; 19 | public static final int item_image=0x7f060001; 20 | public static final int item_text=0x7f060002; 21 | } 22 | public static final class layout { 23 | public static final int activity_main=0x7f030000; 24 | public static final int grid_item=0x7f030001; 25 | } 26 | public static final class string { 27 | public static final int app_name=0x7f040000; 28 | public static final int hello_world=0x7f040001; 29 | public static final int menu_settings=0x7f040002; 30 | } 31 | public static final class style { 32 | /** 33 | Base application theme, dependent on API level. This theme is replaced 34 | by AppBaseTheme from res/values-vXX/styles.xml on newer devices. 35 | 36 | 37 | Theme customizations available in newer API levels can go in 38 | res/values-vXX/styles.xml, while customizations related to 39 | backward-compatibility can go here. 40 | 41 | */ 42 | public static final int AppBaseTheme=0x7f050000; 43 | /** Application theme. 44 | All customizations that are NOT specific to a particular API-level can go here. 45 | */ 46 | public static final int AppTheme=0x7f050001; 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /DragGridView/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/ic_launcher-web.png -------------------------------------------------------------------------------- /DragGridView/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/libs/android-support-v4.jar -------------------------------------------------------------------------------- /DragGridView/libs/nineoldanimatin.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/libs/nineoldanimatin.jar -------------------------------------------------------------------------------- /DragGridView/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /DragGridView/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-10 15 | -------------------------------------------------------------------------------- /DragGridView/res/drawable-hdpi/com_tencent_open_notice_msg_icon_big.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/res/drawable-hdpi/com_tencent_open_notice_msg_icon_big.png -------------------------------------------------------------------------------- /DragGridView/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /DragGridView/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /DragGridView/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /DragGridView/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /DragGridView/res/layout/activity_main.xml: -------------------------------------------------------------------------------- 1 | 5 | 6 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /DragGridView/res/layout/grid_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 13 | 14 | 15 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /DragGridView/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | DragGridView 5 | Hello world! 6 | Settings 7 | 8 | -------------------------------------------------------------------------------- /DragGridView/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 14 | 15 | 16 | 19 | 20 | -------------------------------------------------------------------------------- /DragGridView/src/com/example/draggridview/DragAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/src/com/example/draggridview/DragAdapter.java -------------------------------------------------------------------------------- /DragGridView/src/com/example/draggridview/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/src/com/example/draggridview/MainActivity.java -------------------------------------------------------------------------------- /DragGridView/src/com/example/framework/DragGridBaseAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/src/com/example/framework/DragGridBaseAdapter.java -------------------------------------------------------------------------------- /DragGridView/src/com/example/framework/DragGridView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xiaanming/DragGridView/9c2dd26834e31d6bebb3e6e60fdc8933e72a8054/DragGridView/src/com/example/framework/DragGridView.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | DragGridView 2 | ============ 3 | There is a View extend GridView, drag item to change 4 | http://blog.csdn.net/xiaanming/article/details/17718579 5 | 6 | #ScreenShot 7 | ![](https://github.com/xiaanming/DragGridView/blob/master/DragGridView/DragGridViewDemo.gif) 8 | --------------------------------------------------------------------------------