├── .gitattributes ├── .gitignore ├── CardDemo ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── ic_launcher-web.png ├── libs │ └── android-support-v4.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ ├── drawable-xxhdpi │ │ └── ic_launcher.png │ ├── layout │ │ ├── activity_card.xml │ │ ├── activity_main.xml │ │ ├── card_ex.xml │ │ ├── carddemo_color_inner_base_main.xml │ │ └── color_card.xml │ ├── menu │ │ └── card.xml │ ├── values-sw600dp │ │ └── dimens.xml │ ├── values-sw720dp-land │ │ └── dimens.xml │ ├── values-v11 │ │ └── styles.xml │ ├── values-v14 │ │ └── styles.xml │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml └── src │ └── com │ └── gxy │ └── carddemo │ ├── CardActivity.java │ └── MyCard.java ├── CardDemoLib ├── .classpath ├── .project ├── .settings │ └── org.eclipse.jdt.core.prefs ├── AndroidManifest.xml ├── build.gradle ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── libs │ └── nineoldandroids-2.4.0.jar ├── proguard-project.txt ├── project.properties ├── res │ ├── anim │ │ ├── cycles.xml │ │ └── shake.xml │ ├── drawable-hdpi │ │ ├── ic_launcher.png │ │ ├── ic_undobar_undo.png │ │ ├── undobar.9.png │ │ ├── undobar_button_focused.9.png │ │ ├── undobar_button_pressed.9.png │ │ └── undobar_divider.9.png │ ├── drawable-xhdpi │ │ ├── card_background.9.png │ │ ├── card_background_shadow.9.png │ │ ├── card_shadow.9.png │ │ └── top_shadow.png │ ├── drawable │ │ ├── card.xml │ │ └── card_undo.xml │ ├── layout │ │ ├── cards_view.xml │ │ ├── cards_view_multicolumn.xml │ │ ├── footer_fragment.xml │ │ ├── header.xml │ │ ├── item_card.xml │ │ ├── item_card_empty_first.xml │ │ ├── item_card_empty_last.xml │ │ ├── item_play_card_empty_first.xml │ │ ├── item_stack.xml │ │ └── list_card_undo_message.xml │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ ├── styles.xml │ │ └── styles_undo.xml └── src │ └── com │ └── fima │ └── cardsui │ ├── StackAdapter.java │ ├── SwipeDismissTouchListener.java │ ├── UndoBarController.java │ ├── UndoCard.java │ ├── Utils.java │ ├── objects │ ├── AbstractCard.java │ ├── Card.java │ ├── CardFactory.java │ ├── CardModel.java │ ├── CardStack.java │ └── RecyclableCard.java │ └── views │ ├── CardUI.java │ └── QuickReturnListView.java └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/.gitignore -------------------------------------------------------------------------------- /CardDemo/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/.classpath -------------------------------------------------------------------------------- /CardDemo/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/.project -------------------------------------------------------------------------------- /CardDemo/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /CardDemo/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/AndroidManifest.xml -------------------------------------------------------------------------------- /CardDemo/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/ic_launcher-web.png -------------------------------------------------------------------------------- /CardDemo/libs/android-support-v4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/libs/android-support-v4.jar -------------------------------------------------------------------------------- /CardDemo/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/proguard-project.txt -------------------------------------------------------------------------------- /CardDemo/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/project.properties -------------------------------------------------------------------------------- /CardDemo/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /CardDemo/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CardDemo/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /CardDemo/res/layout/activity_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/res/layout/activity_card.xml -------------------------------------------------------------------------------- /CardDemo/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/res/layout/activity_main.xml -------------------------------------------------------------------------------- /CardDemo/res/layout/card_ex.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/res/layout/card_ex.xml -------------------------------------------------------------------------------- /CardDemo/res/layout/carddemo_color_inner_base_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/res/layout/carddemo_color_inner_base_main.xml -------------------------------------------------------------------------------- /CardDemo/res/layout/color_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/res/layout/color_card.xml -------------------------------------------------------------------------------- /CardDemo/res/menu/card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/res/menu/card.xml -------------------------------------------------------------------------------- /CardDemo/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/res/values-sw600dp/dimens.xml -------------------------------------------------------------------------------- /CardDemo/res/values-sw720dp-land/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/res/values-sw720dp-land/dimens.xml -------------------------------------------------------------------------------- /CardDemo/res/values-v11/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/res/values-v11/styles.xml -------------------------------------------------------------------------------- /CardDemo/res/values-v14/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/res/values-v14/styles.xml -------------------------------------------------------------------------------- /CardDemo/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/res/values/colors.xml -------------------------------------------------------------------------------- /CardDemo/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/res/values/dimens.xml -------------------------------------------------------------------------------- /CardDemo/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/res/values/strings.xml -------------------------------------------------------------------------------- /CardDemo/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/res/values/styles.xml -------------------------------------------------------------------------------- /CardDemo/src/com/gxy/carddemo/CardActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/src/com/gxy/carddemo/CardActivity.java -------------------------------------------------------------------------------- /CardDemo/src/com/gxy/carddemo/MyCard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemo/src/com/gxy/carddemo/MyCard.java -------------------------------------------------------------------------------- /CardDemoLib/.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/.classpath -------------------------------------------------------------------------------- /CardDemoLib/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/.project -------------------------------------------------------------------------------- /CardDemoLib/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/.settings/org.eclipse.jdt.core.prefs -------------------------------------------------------------------------------- /CardDemoLib/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/AndroidManifest.xml -------------------------------------------------------------------------------- /CardDemoLib/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/build.gradle -------------------------------------------------------------------------------- /CardDemoLib/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /CardDemoLib/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /CardDemoLib/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/gradlew -------------------------------------------------------------------------------- /CardDemoLib/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/gradlew.bat -------------------------------------------------------------------------------- /CardDemoLib/libs/nineoldandroids-2.4.0.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/libs/nineoldandroids-2.4.0.jar -------------------------------------------------------------------------------- /CardDemoLib/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/proguard-project.txt -------------------------------------------------------------------------------- /CardDemoLib/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/project.properties -------------------------------------------------------------------------------- /CardDemoLib/res/anim/cycles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/anim/cycles.xml -------------------------------------------------------------------------------- /CardDemoLib/res/anim/shake.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/anim/shake.xml -------------------------------------------------------------------------------- /CardDemoLib/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /CardDemoLib/res/drawable-hdpi/ic_undobar_undo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/drawable-hdpi/ic_undobar_undo.png -------------------------------------------------------------------------------- /CardDemoLib/res/drawable-hdpi/undobar.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/drawable-hdpi/undobar.9.png -------------------------------------------------------------------------------- /CardDemoLib/res/drawable-hdpi/undobar_button_focused.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/drawable-hdpi/undobar_button_focused.9.png -------------------------------------------------------------------------------- /CardDemoLib/res/drawable-hdpi/undobar_button_pressed.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/drawable-hdpi/undobar_button_pressed.9.png -------------------------------------------------------------------------------- /CardDemoLib/res/drawable-hdpi/undobar_divider.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/drawable-hdpi/undobar_divider.9.png -------------------------------------------------------------------------------- /CardDemoLib/res/drawable-xhdpi/card_background.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/drawable-xhdpi/card_background.9.png -------------------------------------------------------------------------------- /CardDemoLib/res/drawable-xhdpi/card_background_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/drawable-xhdpi/card_background_shadow.9.png -------------------------------------------------------------------------------- /CardDemoLib/res/drawable-xhdpi/card_shadow.9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/drawable-xhdpi/card_shadow.9.png -------------------------------------------------------------------------------- /CardDemoLib/res/drawable-xhdpi/top_shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/drawable-xhdpi/top_shadow.png -------------------------------------------------------------------------------- /CardDemoLib/res/drawable/card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/drawable/card.xml -------------------------------------------------------------------------------- /CardDemoLib/res/drawable/card_undo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/drawable/card_undo.xml -------------------------------------------------------------------------------- /CardDemoLib/res/layout/cards_view.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/layout/cards_view.xml -------------------------------------------------------------------------------- /CardDemoLib/res/layout/cards_view_multicolumn.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/layout/cards_view_multicolumn.xml -------------------------------------------------------------------------------- /CardDemoLib/res/layout/footer_fragment.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/layout/footer_fragment.xml -------------------------------------------------------------------------------- /CardDemoLib/res/layout/header.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/layout/header.xml -------------------------------------------------------------------------------- /CardDemoLib/res/layout/item_card.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/layout/item_card.xml -------------------------------------------------------------------------------- /CardDemoLib/res/layout/item_card_empty_first.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/layout/item_card_empty_first.xml -------------------------------------------------------------------------------- /CardDemoLib/res/layout/item_card_empty_last.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/layout/item_card_empty_last.xml -------------------------------------------------------------------------------- /CardDemoLib/res/layout/item_play_card_empty_first.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/layout/item_play_card_empty_first.xml -------------------------------------------------------------------------------- /CardDemoLib/res/layout/item_stack.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/layout/item_stack.xml -------------------------------------------------------------------------------- /CardDemoLib/res/layout/list_card_undo_message.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/layout/list_card_undo_message.xml -------------------------------------------------------------------------------- /CardDemoLib/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/values/colors.xml -------------------------------------------------------------------------------- /CardDemoLib/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/values/dimens.xml -------------------------------------------------------------------------------- /CardDemoLib/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/values/strings.xml -------------------------------------------------------------------------------- /CardDemoLib/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/values/styles.xml -------------------------------------------------------------------------------- /CardDemoLib/res/values/styles_undo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/res/values/styles_undo.xml -------------------------------------------------------------------------------- /CardDemoLib/src/com/fima/cardsui/StackAdapter.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/src/com/fima/cardsui/StackAdapter.java -------------------------------------------------------------------------------- /CardDemoLib/src/com/fima/cardsui/SwipeDismissTouchListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/src/com/fima/cardsui/SwipeDismissTouchListener.java -------------------------------------------------------------------------------- /CardDemoLib/src/com/fima/cardsui/UndoBarController.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/src/com/fima/cardsui/UndoBarController.java -------------------------------------------------------------------------------- /CardDemoLib/src/com/fima/cardsui/UndoCard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/src/com/fima/cardsui/UndoCard.java -------------------------------------------------------------------------------- /CardDemoLib/src/com/fima/cardsui/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/src/com/fima/cardsui/Utils.java -------------------------------------------------------------------------------- /CardDemoLib/src/com/fima/cardsui/objects/AbstractCard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/src/com/fima/cardsui/objects/AbstractCard.java -------------------------------------------------------------------------------- /CardDemoLib/src/com/fima/cardsui/objects/Card.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/src/com/fima/cardsui/objects/Card.java -------------------------------------------------------------------------------- /CardDemoLib/src/com/fima/cardsui/objects/CardFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/src/com/fima/cardsui/objects/CardFactory.java -------------------------------------------------------------------------------- /CardDemoLib/src/com/fima/cardsui/objects/CardModel.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/src/com/fima/cardsui/objects/CardModel.java -------------------------------------------------------------------------------- /CardDemoLib/src/com/fima/cardsui/objects/CardStack.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/src/com/fima/cardsui/objects/CardStack.java -------------------------------------------------------------------------------- /CardDemoLib/src/com/fima/cardsui/objects/RecyclableCard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/src/com/fima/cardsui/objects/RecyclableCard.java -------------------------------------------------------------------------------- /CardDemoLib/src/com/fima/cardsui/views/CardUI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/src/com/fima/cardsui/views/CardUI.java -------------------------------------------------------------------------------- /CardDemoLib/src/com/fima/cardsui/views/QuickReturnListView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/CardDemoLib/src/com/fima/cardsui/views/QuickReturnListView.java -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/a396901990/CardList/HEAD/README.md --------------------------------------------------------------------------------