public class WindowDecorActionBar.ActionModeImpl extends ActionMode implements MenuBuilder.Callback
ActionMode.Callback, ActionMode.Callback2
DEFAULT_HIDE_DURATION, TYPE_FLOATING, TYPE_PRIMARY
Constructor and Description |
---|
ActionModeImpl(Context context,
ActionMode.Callback callback) |
Modifier and Type | Method and Description |
---|---|
boolean |
dispatchOnCreate() |
void |
finish()
Finish and close this action mode.
|
View |
getCustomView()
Returns the current custom view for this action mode.
|
Menu |
getMenu()
Returns the menu of actions that this action mode presents.
|
MenuInflater |
getMenuInflater()
Returns a
MenuInflater with the ActionMode's context. |
CharSequence |
getSubtitle()
Returns the current subtitle of this action mode.
|
CharSequence |
getTitle()
Returns the current title of this action mode.
|
void |
invalidate()
Invalidate the action mode and refresh menu content.
|
boolean |
isTitleOptional() |
void |
onCloseMenu(MenuBuilder menu,
boolean allMenusAreClosing) |
void |
onCloseSubMenu(SubMenuBuilder menu) |
boolean |
onMenuItemSelected(MenuBuilder menu,
MenuItem item)
Called when a menu item is selected.
|
void |
onMenuModeChange(MenuBuilder menu)
Called when the mode of the menu changes (for example, from icon to expanded).
|
boolean |
onSubMenuSelected(SubMenuBuilder subMenu) |
void |
setCustomView(View view)
Set a custom view for this action mode.
|
void |
setSubtitle(CharSequence subtitle)
Set the subtitle of the action mode.
|
void |
setSubtitle(int resId)
Set the subtitle of the action mode.
|
void |
setTitle(CharSequence title)
Set the title of the action mode.
|
void |
setTitle(int resId)
Set the title of the action mode.
|
void |
setTitleOptionalHint(boolean titleOptional)
Set whether or not the title/subtitle display for this action mode
is optional.
|
getTag, getTitleOptionalHint, getType, hide, invalidateContentRect, isUiFocusable, onWindowFocusChanged, setTag, setType
public ActionModeImpl(Context context, ActionMode.Callback callback)
public MenuInflater getMenuInflater()
ActionMode
MenuInflater
with the ActionMode's context.getMenuInflater
in class ActionMode
public Menu getMenu()
ActionMode
getMenu
in class ActionMode
public void finish()
ActionMode
ActionMode.Callback
will
have its ActionMode.Callback.onDestroyActionMode(ActionMode)
method called.finish
in class ActionMode
public void invalidate()
ActionMode
ActionMode.Callback
will have its
ActionMode.Callback.onPrepareActionMode(ActionMode, Menu)
method called.
If it returns true the menu will be scanned for updated content and any relevant changes
will be reflected to the user.invalidate
in class ActionMode
public boolean dispatchOnCreate()
public void setCustomView(View view)
ActionMode
setCustomView
in class ActionMode
view
- Custom view to use in place of the title/subtitle.ActionMode.setTitle(CharSequence)
,
ActionMode.setSubtitle(CharSequence)
public void setSubtitle(CharSequence subtitle)
ActionMode
setSubtitle
in class ActionMode
subtitle
- Subtitle string to setActionMode.setSubtitle(int)
,
ActionMode.setCustomView(View)
public void setTitle(CharSequence title)
ActionMode
setTitle
in class ActionMode
title
- Title string to setActionMode.setTitle(int)
,
ActionMode.setCustomView(View)
public void setTitle(int resId)
ActionMode
setTitle
in class ActionMode
resId
- Resource ID of a string to set as the titleActionMode.setTitle(CharSequence)
,
ActionMode.setCustomView(View)
public void setSubtitle(int resId)
ActionMode
setSubtitle
in class ActionMode
resId
- Resource ID of a string to set as the subtitleActionMode.setSubtitle(CharSequence)
,
ActionMode.setCustomView(View)
public CharSequence getTitle()
ActionMode
getTitle
in class ActionMode
public CharSequence getSubtitle()
ActionMode
getSubtitle
in class ActionMode
public void setTitleOptionalHint(boolean titleOptional)
ActionMode
In many cases the supplied title for an action mode is merely meant to add context and is not strictly required for the action mode to be useful. If the title is optional, the system may choose to hide the title entirely rather than truncate it due to a lack of available space.
Note that this is merely a hint; the underlying implementation may choose to ignore this setting under some circumstances.
setTitleOptionalHint
in class ActionMode
titleOptional
- true if the title only presents optional information.public boolean isTitleOptional()
isTitleOptional
in class ActionMode
public View getCustomView()
ActionMode
getCustomView
in class ActionMode
public boolean onMenuItemSelected(MenuBuilder menu, MenuItem item)
MenuBuilder.Callback
onMenuItemSelected
in interface MenuBuilder.Callback
menu
- The menu that is the parent of the itemitem
- The menu item that is selectedpublic void onCloseMenu(MenuBuilder menu, boolean allMenusAreClosing)
public boolean onSubMenuSelected(SubMenuBuilder subMenu)
public void onCloseSubMenu(SubMenuBuilder menu)
public void onMenuModeChange(MenuBuilder menu)
MenuBuilder.Callback
onMenuModeChange
in interface MenuBuilder.Callback
menu
- the menu that has changed modes