Android Activity ActionMode Callback

850 ワード

2つのActionModeのActivityでのコールバックをメモしてください.
注意この2つのcallbackが発生したタイミングはすべてonXXXで、つまり事件は発生したが、まだ完成していない.
ActionModeがまだ完全に現れていない/消えていない.
そのため、ActionModeの出現/消失を明確にする操作を行う場合、これらの操作を次のsliceにDelayすることがある.
    /**
     * Notifies the Activity that an action mode has been started.
     * Activity subclasses overriding this method should call the superclass implementation.
     *
     * @param mode The new action mode.
     */
    @Override
    public void onActionModeStarted(ActionMode mode) {
    }

    /**
     * Notifies the activity that an action mode has finished.
     * Activity subclasses overriding this method should call the superclass implementation.
     *
     * @param mode The action mode that just finished.
     */
    @Override
    public void onActionModeFinished(ActionMode mode) {
    }