public abstract static class ActionMode.Callback2 extends Object implements ActionMode.Callback
ActionMode.Callback
to provide content rect information. This is
required for ActionModes with dynamic positioning such as the ones with type
ActionMode.TYPE_FLOATING
to ensure the positioning doesn't obscure app content. If
an app fails to provide a subclass of this class, a default implementation will be used.Constructor and Description |
---|
Callback2() |
Modifier and Type | Method and Description |
---|---|
void |
onGetContentRect(ActionMode mode,
View view,
Rect outRect)
Called when an ActionMode needs to be positioned on screen, potentially occluding view
content.
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
onActionItemClicked, onCreateActionMode, onDestroyActionMode, onPrepareActionMode
public void onGetContentRect(ActionMode mode, View view, Rect outRect)
mode
- The ActionMode that requires positioning.view
- The View that originated the ActionMode, in whose coordinates the Rect should
be provided.outRect
- The Rect to be populated with the content position. Use this to specify
where the content in your app lives within the given view. This will be used
to avoid occluding the given content Rect with the created ActionMode.