Option
class Option : Parcelable
| kotlin.Any | |
| ↳ | android.app.VoiceInteractor.PickOptionRequest.Option | 
Represents a single option that the user may select using their voice. The getIndex() method should be used as a unique ID to identify the option when it is returned from the voice interactor.
Summary
| Inherited constants | |
|---|---|
| Public constructors | |
|---|---|
| Option(label: CharSequence!, index: Int)Creates an option that a user can select with their voice by matching the label or one of several synonyms. | |
| Public methods | |
|---|---|
| VoiceInteractor.PickOptionRequest.Option! | addSynonym(synonym: CharSequence!)Add a synonym term to the option to indicate an alternative way the content may be matched. | 
| Int | |
| Int | |
| Bundle! | Return any optional extras information associated with this option, or null if there is none. | 
| Int | getIndex()Return the index that was supplied in the constructor. | 
| CharSequence! | getLabel() | 
| CharSequence! | getSynonymAt(index: Int) | 
| Unit | Set optional extra information associated with this option. | 
| Unit | writeToParcel(dest: Parcel, flags: Int) | 
| Properties | |
|---|---|
| static Parcelable.Creator<VoiceInteractor.PickOptionRequest.Option!> | |
Public constructors
Option
Option(
label: CharSequence!,
index: Int)
Creates an option that a user can select with their voice by matching the label or one of several synonyms.
| Parameters | |
|---|---|
| label | CharSequence!: The label that will both be matched against what the user speaks and displayed visually. | 
| index | Int: The location of this option within the overall set of options. Can be used to help identify the option when it is returned from the voice interactor. | 
Public methods
addSynonym
fun addSynonym(synonym: CharSequence!): VoiceInteractor.PickOptionRequest.Option!
Add a synonym term to the option to indicate an alternative way the content may be matched.
| Parameters | |
|---|---|
| synonym | CharSequence!: The synonym that will be matched against what the user speaks, but not displayed. | 
describeContents
fun describeContents(): Int
| Return | |
|---|---|
| Int | a bitmask indicating the set of special object types marshaled by this Parcelable object instance. Value is either 0orandroid.os.Parcelable#CONTENTS_FILE_DESCRIPTOR | 
getExtras
fun getExtras(): Bundle!
Return any optional extras information associated with this option, or null if there is none. Note that this method returns a reference to the actual extras Bundle in the option, so modifications to it will directly modify the extras in the option.
getIndex
fun getIndex(): Int
Return the index that was supplied in the constructor. If the option was constructed without an index, -1 is returned.
setExtras
fun setExtras(extras: Bundle!): Unit
Set optional extra information associated with this option. Note that this method takes ownership of the supplied extras Bundle.
writeToParcel
fun writeToParcel(
dest: Parcel,
flags: Int
): Unit
| Parameters | |
|---|---|
| dest | Parcel: The Parcel in which the object should be written. This value cannot be null. | 
| flags | Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE. Value is either0or a combination ofandroid.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES | 
Properties
CREATOR
static val CREATOR: Parcelable.Creator<VoiceInteractor.PickOptionRequest.Option!>
