Home | History | Annotate | Download | only in _MODULE_

Lines Matching full:card

41 -Create a instance of Card.Builder with a tag String that *must* be unique among all cards.
43 Card.Builder builder = new Card.Builder(UNIQUE_TAG_STRING);
45 -Set the properties for your card in the builder. Some properties (title, description, progress type) can also
50 -Cards can also have more than one action that is shown as a button at the bottom of the card.
57 For convenience, the tag of the card the action belongs to is also returned in the callback.
59 builder.addAction(actionLabel1, 0, Card.ACTION_NEUTRAL, new Card.CardActionCallback() {
67 -After finishing setup process, call Buidler.build() to return a new instance of a Card.
69 final Card card = builder.build(activity);
73 A card needs to be added to the CardStreamFragment first before it can be shown.
76 Card myCard = ...