WalletServiceEvent
class WalletServiceEvent : Parcelable
Represents a request from the wallet app
to the Quick Access Wallet in System UI. Background events may necessitate that the Quick Access Wallet update its view. For example, if the wallet application handles an NFC payment while the Quick Access Wallet is being shown, it needs to tell the Quick Access Wallet so that the wallet can be dismissed and Activity showing the payment can be displayed to the user.
Summary
Constants |
static Int |
An NFC payment has started.
|
Inherited constants |
From class Parcelable
Int |
CONTENTS_FILE_DESCRIPTOR
Descriptor bit used with describeContents() : indicates that the Parcelable object's flattened representation includes a file descriptor.
|
Int |
PARCELABLE_WRITE_RETURN_VALUE
Flag for use with writeToParcel : the object being written is a return value, that is the result of a function such as "Parcelable someFunction() ", "void someFunction(out Parcelable) ", or "void someFunction(inout Parcelable) ". Some implementations may want to release resources at this point.
|
|
Public constructors |
Creates a new DismissWalletRequest.
|
Public methods |
Int |
|
Int |
|
Unit |
Flatten this object in to a Parcel.
|
Constants
TYPE_NFC_PAYMENT_STARTED
static val TYPE_NFC_PAYMENT_STARTED: Int
An NFC payment has started. If the Quick Access Wallet is in a system window, it will need to be dismissed so that an Activity showing the payment can be displayed.
Value: 1
Public constructors
WalletServiceEvent
WalletServiceEvent(eventType: Int)
Creates a new DismissWalletRequest.
Public methods
describeContents
fun describeContents(): Int
getEventType
fun getEventType(): Int
writeToParcel
fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
Flatten this object in to a Parcel.
Properties