├── app ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── drawable │ │ │ │ ├── image.png │ │ │ │ └── background.jpg │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── image_cancel.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── image_cancel.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── image_cancel.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── image_cancel.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── image_cancel.png │ │ │ ├── drawable-hdpi │ │ │ │ ├── ic_map_black_24dp.png │ │ │ │ ├── ic_class_black_24dp.png │ │ │ │ ├── ic_info_black_24dp.png │ │ │ │ ├── ic_share_black_24dp.png │ │ │ │ ├── ic_beenhere_black_24dp.png │ │ │ │ ├── ic_pan_tool_black_24dp.png │ │ │ │ ├── ic_extension_black_24dp.png │ │ │ │ ├── ic_swap_vert_black_24dp.png │ │ │ │ ├── ic_credit_card_black_24dp.png │ │ │ │ ├── ic_euro_symbol_black_24dp.png │ │ │ │ ├── ic_chrome_reader_mode_black_24dp.png │ │ │ │ └── ic_format_list_bulleted_black_24dp.png │ │ │ ├── drawable-mdpi │ │ │ │ ├── ic_map_black_24dp.png │ │ │ │ ├── ic_class_black_24dp.png │ │ │ │ ├── ic_info_black_24dp.png │ │ │ │ ├── ic_share_black_24dp.png │ │ │ │ ├── ic_beenhere_black_24dp.png │ │ │ │ ├── ic_pan_tool_black_24dp.png │ │ │ │ ├── ic_extension_black_24dp.png │ │ │ │ ├── ic_swap_vert_black_24dp.png │ │ │ │ ├── ic_credit_card_black_24dp.png │ │ │ │ ├── ic_euro_symbol_black_24dp.png │ │ │ │ ├── ic_chrome_reader_mode_black_24dp.png │ │ │ │ └── ic_format_list_bulleted_black_24dp.png │ │ │ ├── drawable-xhdpi │ │ │ │ ├── ic_info_black_24dp.png │ │ │ │ ├── ic_map_black_24dp.png │ │ │ │ ├── ic_class_black_24dp.png │ │ │ │ ├── ic_share_black_24dp.png │ │ │ │ ├── ic_beenhere_black_24dp.png │ │ │ │ ├── ic_extension_black_24dp.png │ │ │ │ ├── ic_pan_tool_black_24dp.png │ │ │ │ ├── ic_swap_vert_black_24dp.png │ │ │ │ ├── ic_credit_card_black_24dp.png │ │ │ │ ├── ic_euro_symbol_black_24dp.png │ │ │ │ ├── ic_chrome_reader_mode_black_24dp.png │ │ │ │ └── ic_format_list_bulleted_black_24dp.png │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── ic_map_black_24dp.png │ │ │ │ ├── ic_class_black_24dp.png │ │ │ │ ├── ic_info_black_24dp.png │ │ │ │ ├── ic_share_black_24dp.png │ │ │ │ ├── ic_beenhere_black_24dp.png │ │ │ │ ├── ic_pan_tool_black_24dp.png │ │ │ │ ├── ic_credit_card_black_24dp.png │ │ │ │ ├── ic_euro_symbol_black_24dp.png │ │ │ │ ├── ic_extension_black_24dp.png │ │ │ │ ├── ic_swap_vert_black_24dp.png │ │ │ │ ├── ic_chrome_reader_mode_black_24dp.png │ │ │ │ └── ic_format_list_bulleted_black_24dp.png │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── ic_class_black_24dp.png │ │ │ │ ├── ic_info_black_24dp.png │ │ │ │ ├── ic_map_black_24dp.png │ │ │ │ ├── ic_share_black_24dp.png │ │ │ │ ├── ic_beenhere_black_24dp.png │ │ │ │ ├── ic_extension_black_24dp.png │ │ │ │ ├── ic_pan_tool_black_24dp.png │ │ │ │ ├── ic_swap_vert_black_24dp.png │ │ │ │ ├── ic_credit_card_black_24dp.png │ │ │ │ ├── ic_euro_symbol_black_24dp.png │ │ │ │ ├── ic_chrome_reader_mode_black_24dp.png │ │ │ │ └── ic_format_list_bulleted_black_24dp.png │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── dimens.xml │ │ │ │ ├── styles.xml │ │ │ │ └── strings.xml │ │ │ ├── values-v21 │ │ │ │ └── styles.xml │ │ │ ├── values-w820dp │ │ │ │ └── dimens.xml │ │ │ ├── menu │ │ │ │ ├── menu_main.xml │ │ │ │ └── drawer.xml │ │ │ └── layout │ │ │ │ ├── nav_header.xml │ │ │ │ └── activity_main.xml │ │ └── AndroidManifest.xml │ ├── test │ │ └── java │ │ │ └── it │ │ │ └── michelelacorte │ │ │ └── exampleswipeablecard │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── it │ │ └── michelelacorte │ │ └── exampleswipeablecard │ │ └── ApplicationTest.java ├── proguard-rules.pro └── build.gradle ├── library ├── .gitignore ├── src │ ├── main │ │ ├── res │ │ │ ├── values │ │ │ │ ├── strings.xml │ │ │ │ └── attrs.xml │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── image_cancel.png │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── image_cancel.png │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── image_cancel.png │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── image_cancel.png │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── image_cancel.png │ │ │ └── layout │ │ │ │ ├── credit_card_layout.xml │ │ │ │ ├── credit_card_creation_layout.xml │ │ │ │ ├── maps_card_layout.xml │ │ │ │ ├── normal_card_layout.xml │ │ │ │ ├── recycler_view_card.xml │ │ │ │ └── swipeable_card.xml │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── it │ │ │ └── michelelacorte │ │ │ └── swipeablecard │ │ │ ├── AnimationCard.java │ │ │ ├── Card.java │ │ │ ├── ActivityCardCreation.java │ │ │ ├── CustomCardAnimation.java │ │ │ └── SwipeDismissTouchListenerLeftRight.java │ ├── test │ │ └── java │ │ │ └── it │ │ │ └── michelelacorte │ │ │ └── swipeablecard │ │ │ └── ExampleUnitTest.java │ └── androidTest │ │ └── java │ │ └── it │ │ └── michelelacorte │ │ └── swipeablecard │ │ └── ApplicationTest.java ├── proguard-rules.pro ├── build.gradle └── library.iml ├── docs └── javadoc │ ├── package-list │ ├── script.js │ ├── index.html │ ├── allclasses-noframe.html │ ├── it │ └── michelelacorte │ │ └── swipeablecard │ │ ├── package-frame.html │ │ ├── SwipeableCardAdapter.CardViewHolder.html │ │ ├── package-tree.html │ │ ├── SwipeDismissTouchListenerLeftRight.DismissCallbacks.html │ │ ├── package-summary.html │ │ └── AnimationCard.html │ ├── allclasses-frame.html │ ├── deprecated-list.html │ ├── constant-values.html │ ├── help-doc.html │ └── overview-tree.html ├── ANYCARD.md ├── CREDIT.md ├── ATTRS.md ├── CUSTOMIZATION.md ├── MAPS.md ├── RECYCLERVIEW.md ├── SINGLECARD.md └── LICENSE /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /docs/javadoc/package-list: -------------------------------------------------------------------------------- 1 | it.michelelacorte.swipeablecard 2 | -------------------------------------------------------------------------------- /library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | library 3 | 4 | -------------------------------------------------------------------------------- /app/src/main/res/drawable/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable/image.png -------------------------------------------------------------------------------- /app/src/main/res/drawable/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable/background.jpg -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/image_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/mipmap-hdpi/image_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/image_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/mipmap-mdpi/image_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/image_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/mipmap-xhdpi/image_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/image_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/mipmap-xxhdpi/image_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/image_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/mipmap-xxxhdpi/image_cancel.png -------------------------------------------------------------------------------- /library/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/library/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /library/src/main/res/mipmap-hdpi/image_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/library/src/main/res/mipmap-hdpi/image_cancel.png -------------------------------------------------------------------------------- /library/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/library/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /library/src/main/res/mipmap-mdpi/image_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/library/src/main/res/mipmap-mdpi/image_cancel.png -------------------------------------------------------------------------------- /library/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/library/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_map_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-hdpi/ic_map_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_map_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-mdpi/ic_map_black_24dp.png -------------------------------------------------------------------------------- /library/src/main/res/mipmap-xhdpi/image_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/library/src/main/res/mipmap-xhdpi/image_cancel.png -------------------------------------------------------------------------------- /library/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/library/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /library/src/main/res/mipmap-xxhdpi/image_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/library/src/main/res/mipmap-xxhdpi/image_cancel.png -------------------------------------------------------------------------------- /library/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/library/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /library/src/main/res/mipmap-xxxhdpi/image_cancel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/library/src/main/res/mipmap-xxxhdpi/image_cancel.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_class_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-hdpi/ic_class_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-hdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_share_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-hdpi/ic_share_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_class_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-mdpi/ic_class_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-mdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_share_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-mdpi/ic_share_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xhdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_map_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xhdpi/ic_map_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_map_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxhdpi/ic_map_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_beenhere_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-hdpi/ic_beenhere_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_pan_tool_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-hdpi/ic_pan_tool_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_beenhere_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-mdpi/ic_beenhere_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_pan_tool_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-mdpi/ic_pan_tool_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_class_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xhdpi/ic_class_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_share_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xhdpi/ic_share_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_class_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxhdpi/ic_class_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxhdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_share_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxhdpi/ic_share_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_class_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxxhdpi/ic_class_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_info_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxxhdpi/ic_info_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_map_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxxhdpi/ic_map_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_share_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxxhdpi/ic_share_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_extension_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-hdpi/ic_extension_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_swap_vert_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-hdpi/ic_swap_vert_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_extension_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-mdpi/ic_extension_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_swap_vert_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-mdpi/ic_swap_vert_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_beenhere_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xhdpi/ic_beenhere_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_extension_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xhdpi/ic_extension_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_pan_tool_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xhdpi/ic_pan_tool_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_swap_vert_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xhdpi/ic_swap_vert_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_beenhere_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxhdpi/ic_beenhere_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_pan_tool_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxhdpi/ic_pan_tool_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_credit_card_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-hdpi/ic_credit_card_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_euro_symbol_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-hdpi/ic_euro_symbol_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_credit_card_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-mdpi/ic_credit_card_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_euro_symbol_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-mdpi/ic_euro_symbol_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_credit_card_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xhdpi/ic_credit_card_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_euro_symbol_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xhdpi/ic_euro_symbol_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_credit_card_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxhdpi/ic_credit_card_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_euro_symbol_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxhdpi/ic_euro_symbol_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_extension_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxhdpi/ic_extension_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_swap_vert_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxhdpi/ic_swap_vert_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_beenhere_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxxhdpi/ic_beenhere_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_extension_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxxhdpi/ic_extension_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_pan_tool_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxxhdpi/ic_pan_tool_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_swap_vert_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxxhdpi/ic_swap_vert_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_credit_card_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxxhdpi/ic_credit_card_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_euro_symbol_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxxhdpi/ic_euro_symbol_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_chrome_reader_mode_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-hdpi/ic_chrome_reader_mode_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_chrome_reader_mode_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-mdpi/ic_chrome_reader_mode_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-hdpi/ic_format_list_bulleted_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-hdpi/ic_format_list_bulleted_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-mdpi/ic_format_list_bulleted_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-mdpi/ic_format_list_bulleted_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_chrome_reader_mode_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xhdpi/ic_chrome_reader_mode_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_chrome_reader_mode_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxhdpi/ic_chrome_reader_mode_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xhdpi/ic_format_list_bulleted_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xhdpi/ic_format_list_bulleted_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxhdpi/ic_format_list_bulleted_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxhdpi/ic_format_list_bulleted_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_chrome_reader_mode_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxxhdpi/ic_chrome_reader_mode_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/drawable-xxxhdpi/ic_format_list_bulleted_black_24dp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/michelelacorte/SwipeableCard/HEAD/app/src/main/res/drawable-xxxhdpi/ic_format_list_bulleted_black_24dp.png -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #FFC107 4 | #FFA000 5 | #FFEB3B 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 16dp 4 | 16dp 5 | 16dp 6 | 7 | -------------------------------------------------------------------------------- /app/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- 1 | > 2 | 3 | 9 | 10 | -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 64dp 6 | 7 | -------------------------------------------------------------------------------- /library/src/test/java/it/michelelacorte/swipeablecard/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package it.michelelacorte.swipeablecard; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /app/src/test/java/it/michelelacorte/exampleswipeablecard/ExampleUnitTest.java: -------------------------------------------------------------------------------- 1 | package it.michelelacorte.exampleswipeablecard; 2 | 3 | import org.junit.Test; 4 | 5 | import static org.junit.Assert.*; 6 | 7 | /** 8 | * To work on unit tests, switch the Test Artifact in the Build Variants view. 9 | */ 10 | public class ExampleUnitTest { 11 | @Test 12 | public void addition_isCorrect() throws Exception { 13 | assertEquals(4, 2 + 2); 14 | } 15 | } -------------------------------------------------------------------------------- /library/src/androidTest/java/it/michelelacorte/swipeablecard/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package it.michelelacorte.swipeablecard; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /app/src/main/res/menu/menu_main.xml: -------------------------------------------------------------------------------- 1 | 5 | 10 | 11 | -------------------------------------------------------------------------------- /app/src/androidTest/java/it/michelelacorte/exampleswipeablecard/ApplicationTest.java: -------------------------------------------------------------------------------- 1 | package it.michelelacorte.exampleswipeablecard; 2 | 3 | import android.app.Application; 4 | import android.test.ApplicationTestCase; 5 | 6 | /** 7 | * Testing Fundamentals 8 | */ 9 | public class ApplicationTest extends ApplicationTestCase { 10 | public ApplicationTest() { 11 | super(Application.class); 12 | } 13 | } -------------------------------------------------------------------------------- /library/src/main/res/layout/credit_card_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 9 | 10 | 15 | -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 3 | 4 | 8 | 9 | 12 | 15 | 16 | 17 | 18 | -------------------------------------------------------------------------------- /library/src/main/res/layout/credit_card_creation_layout.xml: -------------------------------------------------------------------------------- 1 | 2 | 8 | 9 |