WalletCard.Builder
public
static
final
class
WalletCard.Builder
extends Object
Builder for WalletCard
objects. You must provide cardId, cardImage,
contentDescription, and pendingIntent. If the card is opaque and should be shown with
elevation, set hasShadow to true. cardIcon and cardLabel are optional.
Summary
Inherited methods |
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this object.
|
boolean
|
equals(Object obj)
Indicates whether some other object is "equal to" this one.
|
void
|
finalize()
Called by the garbage collector on an object when garbage collection
determines that there are no more references to the object.
|
final
Class<?>
|
getClass()
Returns the runtime class of this Object .
|
int
|
hashCode()
Returns a hash code value for the object.
|
final
void
|
notify()
Wakes up a single thread that is waiting on this object's
monitor.
|
final
void
|
notifyAll()
Wakes up all threads that are waiting on this object's monitor.
|
String
|
toString()
Returns a string representation of the object.
|
final
void
|
wait(long timeoutMillis, int nanos)
Causes the current thread to wait until it is awakened, typically
by being notified or interrupted, or until a
certain amount of real time has elapsed.
|
final
void
|
wait(long timeoutMillis)
Causes the current thread to wait until it is awakened, typically
by being notified or interrupted, or until a
certain amount of real time has elapsed.
|
final
void
|
wait()
Causes the current thread to wait until it is awakened, typically
by being notified or interrupted.
|
|
Public constructors
Builder
public Builder (String cardId,
int cardType,
Icon cardImage,
CharSequence contentDescription,
PendingIntent pendingIntent)
Parameters |
cardId |
String : The card id must be non-null and unique within the list of
cards returned. Note:
this card ID should not contain PII (Personally
Identifiable Information, such as username or email address). |
cardType |
int : Integer representing the card type. The card type must be
non-null.
Value is WalletCard.CARD_TYPE_UNKNOWN , WalletCard.CARD_TYPE_PAYMENT , or WalletCard.CARD_TYPE_NON_PAYMENT |
cardImage |
Icon : The visual representation of the card. If the card image Icon
is a bitmap, it should have a width of GetWalletCardsRequest.getCardWidthPx() and a height of GetWalletCardsRequest.getCardHeightPx() . If the card image
does not have these dimensions, it may appear distorted when it
is scaled to fit these dimensions on screen. Bitmaps must be
of type Bitmap.Config.HARDWARE for
performance reasons.
This value cannot be null . |
contentDescription |
CharSequence : The content description of the card image. This field is
required and may not be null or empty.
Note: this message should not contain PII
(Personally Identifiable Information, such as username or email
address). |
pendingIntent |
PendingIntent : If the user performs a click on the card, this PendingIntent
will be sent. If the device is locked, the wallet will first
request device unlock before sending the pending intent. It is
recommended that the pending intent be immutable (use PendingIntent.FLAG_IMMUTABLE ).
This value cannot be null . |
Public methods
setCardIcon
public WalletCard.Builder setCardIcon (Icon cardIcon)
An icon may be shown alongside the card image to convey information about how the card
can be used, or if some other action must be taken before using the card. For example, an
NFC logo could indicate that the card is NFC-enabled and will be provided to an NFC
terminal if the phone is held in close proximity to the NFC reader. This field is
optional.
If the supplied Icon is backed by a bitmap, it should have width and height
GetWalletCardsRequest.getIconSizePx()
.
Parameters |
cardIcon |
Icon : This value may be null . |
setCardLabel
public WalletCard.Builder setCardLabel (CharSequence cardLabel)
A card label may be shown alongside the card image to convey information about how the
card can be used, or if some other action must be taken before using the card. For
example, an NFC-enabled card could be labeled "Hold near reader" to inform the user of
how to use NFC cards when interacting with an NFC reader. This field is optional.
Note: this card label should not contain PII (Personally Identifiable
Information, such as username or email address). If the provided label is too long to fit
on one line, it may be truncated and ellipsized.
Parameters |
cardLabel |
CharSequence : This value may be null . |
setNonPaymentCardSecondaryImage
public WalletCard.Builder setNonPaymentCardSecondaryImage (Icon nonPaymentCardSecondaryImage)
Visual representation of the card when it is tapped. May include additional information
unique to the card, such as a barcode or number. Only valid for CARD_TYPE_NON_PAYMENT.
Parameters |
nonPaymentCardSecondaryImage |
Icon : This value may be null . |