PlaybackControlsRow.ShuffleAction

class PlaybackControlsRow.ShuffleAction : PlaybackControlsRow.MultiAction


An action for displaying a shuffle icon.

Summary

Constants

const Int

Action index for shuffle is off

const Int

Action index for shuffle is on.

const Int
OFF = 0

This property is deprecated.

Use INDEX_OFF

const Int
ON = 1

This property is deprecated.

Use INDEX_ON

Public constructors

Constructor

ShuffleAction(context: Context!, highlightColor: Int)

Constructor

Inherited Constants

From androidx.leanback.widget.Action
const Long
NO_ID = -1

Indicates that an id has not been set.

Inherited functions

From androidx.leanback.widget.Action
Unit
addKeyCode(keyCode: Int)

Adds a keycode used to invoke this Action.

Drawable?

Returns the icon drawable for this Action.

Long

Returns the id for this Action.

CharSequence?

Returns the first line label for this Action.

CharSequence?

Returns the second line label for this Action.

Unit
removeKeyCode(keyCode: Int)

Removes a keycode used to invoke this Action.

Boolean

Returns true if the Action should respond to the given keycode.

Unit
setIcon(icon: Drawable?)

Sets the icon drawable for this Action.

Unit
setId(id: Long)

Sets the id for this Action.

Unit

Sets the first line label for this Action.

Unit

Sets the second line label for this Action.

String
From androidx.leanback.widget.PlaybackControlsRow.MultiAction
Int

Returns the number of actions.

Drawable!
getDrawable(index: Int)

Returns the drawable at the given index.

Int

Returns the current index.

String!
getLabel(index: Int)

Returns the label at the given index.

String!

Returns the secondary label at the given index.

Unit

Increments the index, wrapping to zero once the end is reached.

Unit
setDrawables(drawables: Array<Drawable!>!)

Sets the array of drawables.

Unit
setIndex(index: Int)

Sets the current index.

Unit
setLabels(labels: Array<String!>!)

Sets the array of strings used as labels.

Unit

Sets the array of strings used as secondary labels.

Constants

INDEX_OFF

Added in 1.1.0
const val INDEX_OFF = 0: Int

Action index for shuffle is off

INDEX_ON

Added in 1.1.0
const val INDEX_ON = 1: Int

Action index for shuffle is on.

OFF

Added in 1.1.0
Deprecated in 1.1.0
const val OFF = 0: Int

Action index for shuffle is off.

ON

Added in 1.1.0
Deprecated in 1.1.0
const val ON = 1: Int

Action index for shuffle is on.

Public constructors

ShuffleAction

Added in 1.1.0
ShuffleAction(context: Context!)

Constructor

Parameters
context: Context!

Context used for loading resources.

ShuffleAction

Added in 1.1.0
ShuffleAction(context: Context!, highlightColor: Int)

Constructor

Parameters
context: Context!

Context used for loading resources.

highlightColor: Int

Color for the highlighted icon state.