belongs to Maven artifact com.android.support:leanback-v17:28.0.0-alpha1
GuidedActionsStylist
public
class
GuidedActionsStylist
extends Object
implements
FragmentAnimationProvider
java.lang.Object | |
↳ | android.support.v17.leanback.widget.GuidedActionsStylist |
GuidedActionsStylist is used within a GuidedStepFragment
to supply the right-side panel where users can take actions. It consists of a container for the
list of actions, and a stationary selector view that indicates visually the location of focus.
GuidedActionsStylist has two different layouts: default is for normal actions including text,
radio, checkbox, DatePicker, etc, the other when setAsButtonActions()
is called is
recommended for button actions such as "yes", "no".
Many aspects of the base GuidedActionsStylist can be customized through theming; see the theme attributes below. Note that these attributes are not set on individual elements in layout XML, but instead would be set in a custom theme. See Styles and Themes for more information.
If these hooks are insufficient, this class may also be subclassed. Subclasses may wish to
override the onProvideLayoutId()
method to change the layout used to display the
list container and selector; override onProvideItemLayoutId(int)
and
getItemViewType(GuidedAction)
method to change the layout used to display each action.
To support a "click to activate" view similar to DatePicker, app needs:
onProvideItemLayoutId(int)
and getItemViewType(GuidedAction)
,
provides a layout id for the action.
setActivated(boolean)
.
onBindActivatorView(ViewHolder, GuidedAction)
to populate values into View.
onUpdateActivatorView(ViewHolder, GuidedAction)
to update action.
Note: If an alternate list layout is provided, the following view IDs must be supplied:
These view IDs must be present in order for the stylist to function. The list ID must correspond
to a VerticalGridView
or subclass.
If an alternate item layout is provided, the following view IDs should be used to refer to base elements:
guidedactions_item_content
guidedactions_item_title
guidedactions_item_description
guidedactions_item_icon
guidedactions_item_checkmark
guidedactions_item_chevron
These view IDs are allowed to be missing, in which case the corresponding views in GuidedActionsStylist.ViewHolder
will be null.
In order to support editable actions, the view associated with guidedactions_item_title should
be a subclass of EditText
, and should satisfy the ImeKeyMonitor
interface.
See also:
Summary
Nested classes | |
---|---|
class |
GuidedActionsStylist.ViewHolder
ViewHolder caches information about the action item layouts' subviews. |
XML attributes | |
---|---|
LeanbackGuidedStepTheme_guidedActionDescriptionMinLines |
|
LeanbackGuidedStepTheme_guidedActionDisabledChevronAlpha |
|
LeanbackGuidedStepTheme_guidedActionEnabledChevronAlpha |
|
LeanbackGuidedStepTheme_guidedActionItemCheckmarkStyle |
|
LeanbackGuidedStepTheme_guidedActionItemChevronStyle |
|
LeanbackGuidedStepTheme_guidedActionItemContainerStyle |
|
LeanbackGuidedStepTheme_guidedActionItemContentStyle |
|
LeanbackGuidedStepTheme_guidedActionItemDescriptionStyle |
|
LeanbackGuidedStepTheme_guidedActionItemIconStyle |
|
LeanbackGuidedStepTheme_guidedActionItemTitleStyle |
|
LeanbackGuidedStepTheme_guidedActionPressedAnimation |
|
LeanbackGuidedStepTheme_guidedActionTitleMaxLines |
|
LeanbackGuidedStepTheme_guidedActionTitleMinLines |
|
LeanbackGuidedStepTheme_guidedActionUnpressedAnimation |
|
LeanbackGuidedStepTheme_guidedActionVerticalPadding |
|
LeanbackGuidedStepTheme_guidedActionsListStyle |
|
LeanbackGuidedStepTheme_guidedActionsSelectorDrawable |
|
LeanbackGuidedStepTheme_guidedButtonActionsListStyle |
|
LeanbackGuidedStepTheme_guidedStepImeAppearingAnimation |
|
LeanbackGuidedStepTheme_guidedStepImeDisappearingAnimation |
|
LeanbackGuidedStepTheme_guidedSubActionsListStyle |
Constants | |
---|---|
int |
VIEW_TYPE_DATE_PICKER
ViewType for DatePicker. |
int |
VIEW_TYPE_DEFAULT
Default viewType that associated with default layout Id for the action item. |
Public constructors | |
---|---|
GuidedActionsStylist()
|
Public methods | |
---|---|
void
|
collapseAction(boolean withTransition)
Collapse expanded action. |
void
|
expandAction(GuidedAction action, boolean withTransition)
Expand an action. |
VerticalGridView
|
getActionsGridView()
Returns the VerticalGridView that displays the list of GuidedActions. |
GuidedAction
|
getExpandedAction()
|
int
|
getItemViewType(GuidedAction action)
Return view type of action, each different type can have differently associated layout Id. |
VerticalGridView
|
getSubActionsGridView()
Returns the VerticalGridView that displays the sub actions list of an expanded action. |
final
boolean
|
isBackKeyToCollapseActivatorView()
|
final
boolean
|
isBackKeyToCollapseSubActions()
|
boolean
|
isButtonActions()
Returns true if it is button actions list, false for normal actions list. |
boolean
|
isExpandTransitionSupported()
Returns if expand/collapse animation is supported. |
boolean
|
isExpanded()
|
boolean
|
isInExpandTransition()
Returns true if it is running an expanding or collapsing transition, false otherwise. |
boolean
|
isSubActionsExpanded()
|
void
|
onAnimateItemChecked(GuidedActionsStylist.ViewHolder vh, boolean checked)
Animates the view holder's view (or subviews thereof) when the action has had its check state changed. |
void
|
onAnimateItemFocused(GuidedActionsStylist.ViewHolder vh, boolean focused)
Animates the view holder's view (or subviews thereof) when the action has had its focus state changed. |
void
|
onAnimateItemPressed(GuidedActionsStylist.ViewHolder vh, boolean pressed)
Animates the view holder's view (or subviews thereof) when the action has had its press state changed. |
void
|
onAnimateItemPressedCancelled(GuidedActionsStylist.ViewHolder vh)
Resets the view holder's view to unpressed state. |
void
|
onBindActivatorView(GuidedActionsStylist.ViewHolder vh, GuidedAction action)
Performs binding activator view value to action. |
void
|
onBindCheckMarkView(GuidedActionsStylist.ViewHolder vh, GuidedAction action)
Sets states of check mark view, called by |
void
|
onBindChevronView(GuidedActionsStylist.ViewHolder vh, GuidedAction action)
Sets states of chevron view, called by |
void
|
onBindViewHolder(GuidedActionsStylist.ViewHolder vh, GuidedAction action)
Binds a |
View
|
onCreateView(LayoutInflater inflater, ViewGroup container)
Creates a view appropriate for displaying a list of GuidedActions, using the provided inflater and container. |
GuidedActionsStylist.ViewHolder
|
onCreateViewHolder(ViewGroup parent, int viewType)
Constructs a |
GuidedActionsStylist.ViewHolder
|
onCreateViewHolder(ViewGroup parent)
Constructs a |
void
|
onDestroyView()
Called when destroy the View created by GuidedActionsStylist. |
void
|
onImeAppearing(List<Animator> animators)
Animates the fragment in response to the IME appearing. |
void
|
onImeDisappearing(List<Animator> animators)
Animates the fragment in response to the IME disappearing. |
int
|
onProvideItemLayoutId()
Provides the resource ID of the layout defining the view for an individual guided actions. |
int
|
onProvideItemLayoutId(int viewType)
Provides the resource ID of the layout defining the view for an individual guided actions. |
int
|
onProvideLayoutId()
Provides the resource ID of the layout defining the host view for the list of guided actions. |
boolean
|
onUpdateActivatorView(GuidedActionsStylist.ViewHolder vh, GuidedAction action)
Performs updating GuidedAction from activator view. |
void
|
onUpdateExpandedViewHolder(GuidedActionsStylist.ViewHolder avh)
Expand or collapse GuidedActionStylist. |
void
|
openInEditMode(GuidedAction action)
Switches action to edit mode and pops up the keyboard. |
void
|
setAsButtonActions()
Choose the layout resource for button actions in |
final
void
|
setBackKeyToCollapseActivatorView(boolean backToCollapse)
Enable or disable using BACK key to collapse |
final
void
|
setBackKeyToCollapseSubActions(boolean backToCollapse)
Enable or disable using BACK key to collapse sub actions list. |
void
|
setEditingMode(GuidedActionsStylist.ViewHolder vh, GuidedAction action, boolean editing)
This method was deprecated in API level 25.1.0. This method is for internal library use only and should not be called directly. |
void
|
setExpandedViewHolder(GuidedActionsStylist.ViewHolder avh)
This method was deprecated
in API level 25.1.0.
use |
void
|
startExpandedTransition(GuidedActionsStylist.ViewHolder avh)
This method was deprecated
in API level 25.1.0.
use |
Protected methods | |
---|---|
void
|
onEditingModeChange(GuidedActionsStylist.ViewHolder vh, GuidedAction action, boolean editing)
This method was deprecated
in API level 25.1.0.
Use |
void
|
onEditingModeChange(GuidedActionsStylist.ViewHolder vh, boolean editing, boolean withTransition)
Called when editing mode of an ViewHolder is changed. |
void
|
setupImeOptions(GuidedActionsStylist.ViewHolder vh, GuidedAction action)
Called by |
Inherited methods | |
---|---|
From
class
java.lang.Object
| |
From
interface
android.support.v17.leanback.widget.FragmentAnimationProvider
|
XML attributes
LeanbackGuidedStepTheme_guidedActionDescriptionMinLines
LeanbackGuidedStepTheme_guidedActionDisabledChevronAlpha
LeanbackGuidedStepTheme_guidedActionEnabledChevronAlpha
LeanbackGuidedStepTheme_guidedActionItemCheckmarkStyle
LeanbackGuidedStepTheme_guidedActionItemChevronStyle
LeanbackGuidedStepTheme_guidedActionItemContainerStyle
LeanbackGuidedStepTheme_guidedActionItemContentStyle
LeanbackGuidedStepTheme_guidedActionItemDescriptionStyle
LeanbackGuidedStepTheme_guidedActionItemIconStyle
LeanbackGuidedStepTheme_guidedActionItemTitleStyle
LeanbackGuidedStepTheme_guidedActionPressedAnimation
LeanbackGuidedStepTheme_guidedActionTitleMaxLines
LeanbackGuidedStepTheme_guidedActionTitleMinLines
LeanbackGuidedStepTheme_guidedActionUnpressedAnimation
LeanbackGuidedStepTheme_guidedActionVerticalPadding
LeanbackGuidedStepTheme_guidedActionsListStyle
LeanbackGuidedStepTheme_guidedActionsSelectorDrawable
LeanbackGuidedStepTheme_guidedButtonActionsListStyle
LeanbackGuidedStepTheme_guidedStepImeAppearingAnimation
LeanbackGuidedStepTheme_guidedStepImeDisappearingAnimation
LeanbackGuidedStepTheme_guidedSubActionsListStyle
Constants
VIEW_TYPE_DATE_PICKER
int VIEW_TYPE_DATE_PICKER
ViewType for DatePicker.
Constant Value: 1 (0x00000001)
VIEW_TYPE_DEFAULT
int VIEW_TYPE_DEFAULT
Default viewType that associated with default layout Id for the action item.
Constant Value: 0 (0x00000000)
Public constructors
Public methods
collapseAction
void collapseAction (boolean withTransition)
Collapse expanded action. Do nothing if it is in animation or there is no action expanded.
Parameters | |
---|---|
withTransition |
boolean : True to run transition animation, false otherwsie.
|
expandAction
void expandAction (GuidedAction action, boolean withTransition)
Expand an action. Do nothing if it is in animation or there is action expanded.
Parameters | |
---|---|
action |
GuidedAction : Action to expand. |
withTransition |
boolean : True to run transition animation, false otherwsie.
|
getActionsGridView
VerticalGridView getActionsGridView ()
Returns the VerticalGridView that displays the list of GuidedActions.
Returns | |
---|---|
VerticalGridView |
The VerticalGridView for this presenter. |
getExpandedAction
GuidedAction getExpandedAction ()
Returns | |
---|---|
GuidedAction |
Current expanded GuidedAction or null if not expanded. |
getItemViewType
int getItemViewType (GuidedAction action)
Return view type of action, each different type can have differently associated layout Id.
Default implementation returns VIEW_TYPE_DEFAULT
.
Parameters | |
---|---|
action |
GuidedAction : The action object. |
Returns | |
---|---|
int |
View type that used in onProvideItemLayoutId(int) .
|
getSubActionsGridView
VerticalGridView getSubActionsGridView ()
Returns the VerticalGridView that displays the sub actions list of an expanded action.
Returns | |
---|---|
VerticalGridView |
The VerticalGridView that displays the sub actions list of an expanded action. |
isBackKeyToCollapseActivatorView
boolean isBackKeyToCollapseActivatorView ()
Returns | |
---|---|
boolean |
True if using BACK key to collapse GuidedAction with editable activator
view, false otherwise. Default value is true. |
See also:
isBackKeyToCollapseSubActions
boolean isBackKeyToCollapseSubActions ()
Returns | |
---|---|
boolean |
True if using BACK key to collapse sub actions list, false otherwise. Default value is true. |
See also:
isButtonActions
boolean isButtonActions ()
Returns true if it is button actions list, false for normal actions list.
Returns | |
---|---|
boolean |
True if it is button actions list, false for normal actions list. |
isExpandTransitionSupported
boolean isExpandTransitionSupported ()
Returns if expand/collapse animation is supported. When this method returns true,
startExpandedTransition(ViewHolder)
will be used. When this method returns false,
onUpdateExpandedViewHolder(ViewHolder)
will be called.
Returns | |
---|---|
boolean |
True if it is running an expanding or collapsing transition, false otherwise. |
isExpanded
boolean isExpanded ()
Returns | |
---|---|
boolean |
True if there is getExpandedAction() is not null, false otherwise.
|
isInExpandTransition
boolean isInExpandTransition ()
Returns true if it is running an expanding or collapsing transition, false otherwise.
Returns | |
---|---|
boolean |
True if it is running an expanding or collapsing transition, false otherwise. |
isSubActionsExpanded
boolean isSubActionsExpanded ()
Returns | |
---|---|
boolean |
True if sub actions list is expanded. |
onAnimateItemChecked
void onAnimateItemChecked (GuidedActionsStylist.ViewHolder vh, boolean checked)
Animates the view holder's view (or subviews thereof) when the action has had its check state
changed. Default implementation calls setChecked() if getCheckmarkView()
is instance of Checkable
.
Parameters | |
---|---|
vh |
GuidedActionsStylist.ViewHolder : The view holder associated with the relevant action. |
checked |
boolean : True if the action has become checked, false if it has become unchecked. |
onAnimateItemFocused
void onAnimateItemFocused (GuidedActionsStylist.ViewHolder vh, boolean focused)
Animates the view holder's view (or subviews thereof) when the action has had its focus state changed.
Parameters | |
---|---|
vh |
GuidedActionsStylist.ViewHolder : The view holder associated with the relevant action. |
focused |
boolean : True if the action has become focused, false if it has lost focus.
|
onAnimateItemPressed
void onAnimateItemPressed (GuidedActionsStylist.ViewHolder vh, boolean pressed)
Animates the view holder's view (or subviews thereof) when the action has had its press state changed.
Parameters | |
---|---|
vh |
GuidedActionsStylist.ViewHolder : The view holder associated with the relevant action. |
pressed |
boolean : True if the action has been pressed, false if it has been unpressed.
|
onAnimateItemPressedCancelled
void onAnimateItemPressedCancelled (GuidedActionsStylist.ViewHolder vh)
Resets the view holder's view to unpressed state.
Parameters | |
---|---|
vh |
GuidedActionsStylist.ViewHolder : The view holder associated with the relevant action.
|
onBindActivatorView
void onBindActivatorView (GuidedActionsStylist.ViewHolder vh, GuidedAction action)
Performs binding activator view value to action. Default implementation supports GuidedDatePickerAction, subclass may override to add support of other views.
Parameters | |
---|---|
vh |
GuidedActionsStylist.ViewHolder : ViewHolder of activator view. |
action |
GuidedAction : GuidedAction to bind.
|
onBindCheckMarkView
void onBindCheckMarkView (GuidedActionsStylist.ViewHolder vh, GuidedAction action)
Sets states of check mark view, called by onBindViewHolder(ViewHolder, GuidedAction)
when action's checkset Id is other than NO_CHECK_SET
. Default
implementation assigns drawable loaded from theme attribute
listChoiceIndicatorMultiple
for checkbox or
listChoiceIndicatorSingle
for radio button. Subclass rarely needs
override the method, instead app can provide its own drawable that supports transition
animations, change theme attributes listChoiceIndicatorMultiple
and
listChoiceIndicatorSingle
in {android.support.v17.leanback.R.
styleable#LeanbackGuidedStepTheme}.
Parameters | |
---|---|
vh |
GuidedActionsStylist.ViewHolder : The view holder associated with the relevant action. |
action |
GuidedAction : The GuidedAction object to bind to. |
onBindChevronView
void onBindChevronView (GuidedActionsStylist.ViewHolder vh, GuidedAction action)
Sets states of chevron view, called by onBindViewHolder(ViewHolder, GuidedAction)
.
Subclass may override.
Parameters | |
---|---|
vh |
GuidedActionsStylist.ViewHolder : The view holder associated with the relevant action. |
action |
GuidedAction : The GuidedAction object to bind to.
|
onBindViewHolder
void onBindViewHolder (GuidedActionsStylist.ViewHolder vh, GuidedAction action)
Binds a GuidedActionsStylist.ViewHolder
to a particular GuidedAction
.
Parameters | |
---|---|
vh |
GuidedActionsStylist.ViewHolder : The view holder to be associated with the given action. |
action |
GuidedAction : The guided action to be displayed by the view holder's view. |
Returns | |
---|---|
void |
The view to be added to the caller's view hierarchy. |
onCreateView
View onCreateView (LayoutInflater inflater, ViewGroup container)
Creates a view appropriate for displaying a list of GuidedActions, using the provided inflater and container.
Note: Does not actually add the created view to the container; the caller should do this.
Parameters | |
---|---|
inflater |
LayoutInflater : The layout inflater to be used when constructing the view. |
container |
ViewGroup : The view group to be passed in the call to
LayoutInflater.inflate . |
Returns | |
---|---|
View |
The view to be added to the caller's view hierarchy. |
onCreateViewHolder
GuidedActionsStylist.ViewHolder onCreateViewHolder (ViewGroup parent, int viewType)
Constructs a GuidedActionsStylist.ViewHolder
capable of representing GuidedAction
s. Subclasses
may choose to return a subclass of ViewHolder.
Note: Should not actually add the created view to the parent; the caller will do this.
Parameters | |
---|---|
parent |
ViewGroup : The view group to be used as the parent of the new view. |
viewType |
int : The viewType returned by getItemViewType(GuidedAction) |
Returns | |
---|---|
GuidedActionsStylist.ViewHolder |
The view to be added to the caller's view hierarchy. |
onCreateViewHolder
GuidedActionsStylist.ViewHolder onCreateViewHolder (ViewGroup parent)
Constructs a GuidedActionsStylist.ViewHolder
capable of representing GuidedAction
s. Subclasses
may choose to return a subclass of ViewHolder. To support different view types, override
onCreateViewHolder(ViewGroup, int)
Note: Should not actually add the created view to the parent; the caller will do this.
Parameters | |
---|---|
parent |
ViewGroup : The view group to be used as the parent of the new view. |
Returns | |
---|---|
GuidedActionsStylist.ViewHolder |
The view to be added to the caller's view hierarchy. |
onDestroyView
void onDestroyView ()
Called when destroy the View created by GuidedActionsStylist.
onImeAppearing
void onImeAppearing (List<Animator> animators)
Animates the fragment in response to the IME appearing.
Parameters | |
---|---|
animators |
List : A list of animations to which this provider's animations should be added.
|
onImeDisappearing
void onImeDisappearing (List<Animator> animators)
Animates the fragment in response to the IME disappearing.
Parameters | |
---|---|
animators |
List : A list of animations to which this provider's animations should be added.
|
onProvideItemLayoutId
int onProvideItemLayoutId ()
Provides the resource ID of the layout defining the view for an individual guided actions.
Subclasses may override to provide their own customized layouts. The base implementation
returns lb_guidedactions_item
. If overridden,
the substituted layout should contain matching IDs for any views that should be managed by
the base class; this can be achieved by starting with a copy of the base layout file. Note
that in order for the item to support editing, the title view should both subclass EditText
and implement ImeKeyMonitor
; see GuidedActionEditText
. To support different types of Layouts, override onProvideItemLayoutId(int)
.
Returns | |
---|---|
int |
The resource ID of the layout to be inflated to define the view to display an individual GuidedAction. |
onProvideItemLayoutId
int onProvideItemLayoutId (int viewType)
Provides the resource ID of the layout defining the view for an individual guided actions. Subclasses may override to provide their own customized layouts. The base implementation supports:
lb_guidedactions_item
lb_guidedactions_datepicker_item
. If
overridden, the substituted layout should contain matching IDs for any views that should be
managed by the base class; this can be achieved by starting with a copy of the base layout
file. Note that in order for the item to support editing, the title view should both subclass
EditText
and implement ImeKeyMonitor
; see
GuidedActionEditText
.
Parameters | |
---|---|
viewType |
int : View type returned by getItemViewType(GuidedAction) |
Returns | |
---|---|
int |
The resource ID of the layout to be inflated to define the view to display an individual GuidedAction. |
onProvideLayoutId
int onProvideLayoutId ()
Provides the resource ID of the layout defining the host view for the list of guided actions.
Subclasses may override to provide their own customized layouts. The base implementation
returns lb_guidedactions
or
lb_guidedbuttonactions
if
isButtonActions()
is true. If overridden, the substituted layout should contain
matching IDs for any views that should be managed by the base class; this can be achieved by
starting with a copy of the base layout file.
Returns | |
---|---|
int |
The resource ID of the layout to be inflated to define the host view for the list of GuidedActions. |
onUpdateActivatorView
boolean onUpdateActivatorView (GuidedActionsStylist.ViewHolder vh, GuidedAction action)
Performs updating GuidedAction from activator view. Default implementation supports GuidedDatePickerAction, subclass may override to add support of other views.
Parameters | |
---|---|
vh |
GuidedActionsStylist.ViewHolder : ViewHolder of activator view. |
action |
GuidedAction : GuidedAction to update. |
Returns | |
---|---|
boolean |
True if value has been updated, false otherwise. |
onUpdateExpandedViewHolder
void onUpdateExpandedViewHolder (GuidedActionsStylist.ViewHolder avh)
Expand or collapse GuidedActionStylist.
Parameters | |
---|---|
avh |
GuidedActionsStylist.ViewHolder : When not null, the GuidedActionStylist expands the sub actions of avh. When null
the GuidedActionStylist will collapse sub actions.
|
openInEditMode
void openInEditMode (GuidedAction action)
Switches action to edit mode and pops up the keyboard.
Parameters | |
---|---|
action |
GuidedAction |
setAsButtonActions
void setAsButtonActions ()
Choose the layout resource for button actions in onProvideLayoutId()
.
setBackKeyToCollapseActivatorView
void setBackKeyToCollapseActivatorView (boolean backToCollapse)
Enable or disable using BACK key to collapse GuidedAction
with editable activator
view. Default is enabled.
Parameters | |
---|---|
backToCollapse |
boolean : True to enable using BACK key to collapse GuidedAction with
editable activator view. |
See also:
setBackKeyToCollapseSubActions
void setBackKeyToCollapseSubActions (boolean backToCollapse)
Enable or disable using BACK key to collapse sub actions list. Default is enabled.
Parameters | |
---|---|
backToCollapse |
boolean : True to enable using BACK key to collapse sub actions list, false
to disable. |
See also:
setEditingMode
void setEditingMode (GuidedActionsStylist.ViewHolder vh, GuidedAction action, boolean editing)
This method was deprecated
in API level 25.1.0.
This method is for internal library use only and should not
be called directly.
Parameters | |
---|---|
vh |
GuidedActionsStylist.ViewHolder |
action |
GuidedAction |
editing |
boolean |
setExpandedViewHolder
void setExpandedViewHolder (GuidedActionsStylist.ViewHolder avh)
This method was deprecated
in API level 25.1.0.
use expandAction(GuidedAction, boolean)
and
collapseAction(boolean)
Expands or collapse the sub actions list view with transition animation
Parameters | |
---|---|
avh |
GuidedActionsStylist.ViewHolder : When not null, fill sub actions list of this ViewHolder into sub actions list and
hide the other items in main list. When null, collapse the sub actions list. |
startExpandedTransition
void startExpandedTransition (GuidedActionsStylist.ViewHolder avh)
This method was deprecated
in API level 25.1.0.
use expandAction(GuidedAction, boolean)
and
collapseAction(boolean)
Start transition to expand or collapse GuidedActionStylist.
Parameters | |
---|---|
avh |
GuidedActionsStylist.ViewHolder : When not null, the GuidedActionStylist expands the sub actions of avh. When null
the GuidedActionStylist will collapse sub actions. |
Protected methods
onEditingModeChange
void onEditingModeChange (GuidedActionsStylist.ViewHolder vh, GuidedAction action, boolean editing)
This method was deprecated
in API level 25.1.0.
Use onEditingModeChange(ViewHolder, boolean, boolean)
.
Parameters | |
---|---|
vh |
GuidedActionsStylist.ViewHolder |
action |
GuidedAction |
editing |
boolean |
onEditingModeChange
void onEditingModeChange (GuidedActionsStylist.ViewHolder vh, boolean editing, boolean withTransition)
Called when editing mode of an ViewHolder is changed. Subclass must call
super.onEditingModeChange(vh,editing,withTransition)
.
Parameters | |
---|---|
vh |
GuidedActionsStylist.ViewHolder : ViewHolder to change editing mode. |
editing |
boolean : True to enable editing, false to stop editing |
withTransition |
boolean : True to run expand transiiton, false otherwise.
|
setupImeOptions
void setupImeOptions (GuidedActionsStylist.ViewHolder vh, GuidedAction action)
Called by onBindViewHolder(ViewHolder, GuidedAction)
to setup IME options. Default
implementation assigns IME_ACTION_DONE
. Subclass may override.
Parameters | |
---|---|
vh |
GuidedActionsStylist.ViewHolder : The view holder to be associated with the given action. |
action |
GuidedAction : The guided action to be displayed by the view holder's view.
|
Interfaces
- BaseGridView.OnKeyInterceptListener
- BaseGridView.OnMotionInterceptListener
- BaseGridView.OnTouchInterceptListener
- BaseGridView.OnUnhandledKeyListener
- BaseOnItemViewClickedListener
- BaseOnItemViewSelectedListener
- BrowseFrameLayout.OnChildFocusListener
- BrowseFrameLayout.OnFocusSearchListener
- FacetProvider
- FacetProviderAdapter
- FocusHighlight
- FragmentAnimationProvider
- ImeKeyMonitor
- ImeKeyMonitor.ImeKeyListener
- MultiActionsProvider
- OnActionClickedListener
- OnChildLaidOutListener
- OnChildSelectedListener
- OnItemViewClickedListener
- OnItemViewSelectedListener
- PlaybackSeekUi
- SearchBar.SearchBarListener
- SearchBar.SearchBarPermissionListener
- SearchEditText.OnKeyboardDismissListener
- SpeechRecognitionCallback
- TitleViewAdapter.Provider
- ViewHolderTask
Classes
- AbstractDetailsDescriptionPresenter
- AbstractDetailsDescriptionPresenter.ViewHolder
- AbstractMediaItemPresenter
- AbstractMediaItemPresenter.ViewHolder
- AbstractMediaListHeaderPresenter
- AbstractMediaListHeaderPresenter.ViewHolder
- Action
- ArrayObjectAdapter
- BaseCardView
- BaseCardView.LayoutParams
- BaseGridView
- BrowseFrameLayout
- ClassPresenterSelector
- ControlButtonPresenterSelector
- CursorObjectAdapter
- DetailsOverviewLogoPresenter
- DetailsOverviewLogoPresenter.ViewHolder
- DetailsOverviewRow
- DetailsOverviewRow.Listener
- DetailsOverviewRowPresenter
- DetailsOverviewRowPresenter.ViewHolder
- DetailsParallax
- DiffCallback
- DividerPresenter
- DividerRow
- FocusHighlightHelper
- FullWidthDetailsOverviewRowPresenter
- FullWidthDetailsOverviewRowPresenter.Listener
- FullWidthDetailsOverviewRowPresenter.ViewHolder
- FullWidthDetailsOverviewRowPresenter.ViewHolder.DetailsOverviewRowListener
- FullWidthDetailsOverviewSharedElementHelper
- GuidanceStylist
- GuidanceStylist.Guidance
- GuidedAction
- GuidedAction.Builder
- GuidedAction.BuilderBase
- GuidedActionDiffCallback
- GuidedActionEditText
- GuidedActionsStylist
- GuidedActionsStylist.ViewHolder
- GuidedDatePickerAction
- GuidedDatePickerAction.Builder
- GuidedDatePickerAction.BuilderBase
- HeaderItem
- HorizontalGridView
- HorizontalHoverCardSwitcher
- ImageCardView
- ItemAlignmentFacet
- ItemAlignmentFacet.ItemAlignmentDef
- ItemBridgeAdapter
- ItemBridgeAdapter.AdapterListener
- ItemBridgeAdapter.ViewHolder
- ItemBridgeAdapter.Wrapper
- ItemBridgeAdapterShadowOverlayWrapper
- ListRow
- ListRowHoverCardView
- ListRowPresenter
- ListRowPresenter.SelectItemViewHolderTask
- ListRowPresenter.ViewHolder
- ListRowView
- MultiActionsProvider.MultiAction
- ObjectAdapter
- ObjectAdapter.DataObserver
- OnChildViewHolderSelectedListener
- PageRow
- Parallax
- Parallax.FloatProperty
- Parallax.IntProperty
- Parallax.PropertyMarkerValue
- ParallaxEffect
- ParallaxTarget
- ParallaxTarget.DirectPropertyTarget
- ParallaxTarget.PropertyValuesHolderTarget
- PlaybackControlsRow
- PlaybackControlsRow.ClosedCaptioningAction
- PlaybackControlsRow.FastForwardAction
- PlaybackControlsRow.HighQualityAction
- PlaybackControlsRow.MoreActions
- PlaybackControlsRow.MultiAction
- PlaybackControlsRow.OnPlaybackProgressCallback
- PlaybackControlsRow.PictureInPictureAction
- PlaybackControlsRow.PlayPauseAction
- PlaybackControlsRow.RepeatAction
- PlaybackControlsRow.RewindAction
- PlaybackControlsRow.ShuffleAction
- PlaybackControlsRow.SkipNextAction
- PlaybackControlsRow.SkipPreviousAction
- PlaybackControlsRow.ThumbsAction
- PlaybackControlsRow.ThumbsDownAction
- PlaybackControlsRow.ThumbsUpAction
- PlaybackControlsRowPresenter
- PlaybackControlsRowPresenter.ViewHolder
- PlaybackRowPresenter
- PlaybackRowPresenter.ViewHolder
- PlaybackSeekDataProvider
- PlaybackSeekDataProvider.ResultCallback
- PlaybackSeekUi.Client
- PlaybackTransportRowPresenter
- PlaybackTransportRowPresenter.ViewHolder
- Presenter
- Presenter.ViewHolder
- Presenter.ViewHolderTask
- PresenterSelector
- PresenterSwitcher
- RecyclerViewParallax
- RecyclerViewParallax.ChildPositionProperty
- Row
- RowHeaderPresenter
- RowHeaderPresenter.ViewHolder
- RowHeaderView
- RowPresenter
- RowPresenter.ViewHolder
- SearchBar
- SearchEditText
- SearchOrbView
- SearchOrbView.Colors
- SectionRow
- ShadowOverlayContainer
- ShadowOverlayHelper
- ShadowOverlayHelper.Builder
- ShadowOverlayHelper.Options
- SinglePresenterSelector
- SparseArrayObjectAdapter
- SpeechOrbView
- TitleHelper
- TitleView
- TitleViewAdapter
- VerticalGridPresenter
- VerticalGridPresenter.ViewHolder
- VerticalGridView
Content and code samples on this page are subject to the licenses described in the Content License. Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.
Last updated 2024-04-11 UTC.