public static class SwipeableCardAdapter.CardViewHolder
114 | extends RecyclerView.ViewHolder
115 | clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitEach package has a page that contains a list of its classes and interfaces, with a summary for each. This page can contain six categories:
79 |Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a class/interface description, summary tables, and detailed member descriptions:
91 |Each summary entry contains the first sentence from the detailed description for that item. The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
111 |Each annotation type has its own separate page with the following sections:
115 |Each enum has its own separate page with the following sections:
126 |There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. The classes are organized by inheritance structure starting with java.lang.Object. The interfaces do not inherit from java.lang.Object.
The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to improvements, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.
144 |The Index contains an alphabetic list of all classes, interfaces, constructors, methods, and fields.
148 |These links take you to the next or previous class, interface, package, or related page.
152 |These links show and hide the HTML frames. All pages are available with or without frames.
156 |The All Classes link shows all classes and interfaces except non-static nested types.
160 |Each serializable or externalizable class has a description of its serialization fields and methods. This information is of interest to re-implementors, not to developers using the API. While there is no link in the navigation bar, you can get to this information by going to any serialized class and clicking "Serialized Form" in the "See also" section of the class description.
164 |The Constant Field Values page lists the static final fields and their values.
168 |public static interface SwipeDismissTouchListenerLeftRight.DismissCallbacks
107 | SwipeDismissTouchListenerLeftRight to inform its client
108 | about a successful dismissal of the view for which it was created.| Modifier and Type | 125 |Method and Description | 126 |
|---|---|
boolean |
129 | canDismiss(java.lang.Object token)
130 | Called to determine whether the view can be dismissed.
131 | |
132 |
void |
135 | onDismiss(android.view.View view,
136 | java.lang.Object token)
137 | Called when the user has indicated they she would like to dismiss the view.
138 | |
139 |
boolean canDismiss(java.lang.Object token)162 |
void onDismiss(android.view.View view, 172 | java.lang.Object token)173 |
view - The originating View to be dismissed.token - The optional token passed to this object's constructor.| Interface | 80 |Description | 81 |
|---|---|
| AnimationCard | 85 |
86 | AnimationCard is an Interface for set-up animation.
87 | |
88 |
| Card | 91 |
92 | Interface to create a custom SwipeableCard, need to implements this with default method
93 | Created by Michele on 13/02/2016.
94 | |
95 |
| SwipeDismissTouchListenerLeftRight.DismissCallbacks | 98 |
99 | The callback interface used by
101 | SwipeDismissTouchListenerLeftRight to inform its client
100 | about a successful dismissal of the view for which it was created. |
102 |
| Class | 111 |Description | 112 |
|---|---|
| ActivityCardCreation | 116 |
117 | Created by Michele on 03/03/2016.
118 | |
119 |
| CustomCardAnimation | 122 |
123 | Custom Card Animation is a class that allow user to use animation with
124 | all card layout
125 | |
126 |
| OptionView | 129 |
130 | Option View describes the options that can be set for Swipeable Card,
131 | offers a Builder to make configuration options easier for users.
132 | |
133 |
| OptionView.Builder | 136 |
137 | Public class Builder for setting up Swipeable Card.
138 | |
139 |
| OptionView.CreditCard | 142 |
143 | Credit Card mode
144 | |
145 |
| OptionView.MapsCard | 148 |
149 | Maps Card mode
150 | |
151 |
| OptionView.NormalCard | 154 |
155 | Normal Card Mode
156 | |
157 |
| OptionViewAdditional | 160 |
161 | OptionViewAdditional provide all custom object settable to SwipeableCard.
162 | |
163 |
| OptionViewAdditional.Builder | 166 |167 | |
| SwipeableCard | 170 |
171 | Swipeable Card is a custom view which use CardView to create
172 | a custom layout of card.
173 | |
174 |
| SwipeableCardAdapter | 177 |
178 | This is an Adapter for RecyclerView that is implemented for al user!
179 | |
180 |
| SwipeableCardAdapter.CardViewHolder | 183 |184 | |
| SwipeDismissTouchListenerLeftRight | 187 |188 | |
public interface AnimationCard
107 | | Modifier and Type | 124 |Method and Description | 125 |
|---|---|
void |
128 | animationCardDown(CardView card,
129 | Toolbar toolbar,
130 | long duration)
131 | Animation card down method
132 | |
133 |
void |
136 | animationCardStart(CardView card,
137 | Toolbar toolbar)
138 | Animation card start method
139 | |
140 |
void |
143 | animationCardUp(CardView card,
144 | Toolbar toolbar,
145 | long duration)
146 | Animation card up method
147 | |
148 |
void animationCardStart(CardView card, 171 | Toolbar toolbar)172 |
card - CardViewtoolbar - Toolbarvoid animationCardDown(CardView card, 187 | Toolbar toolbar, 188 | long duration)189 |
card - CardViewtoolbar - Toolbarduration - longvoid animationCardUp(CardView card, 205 | Toolbar toolbar, 206 | long duration)207 |
card - CardViewtoolbar - Toolbarduration - long