Android APIs
public interface

AppCompatCallback

android.support.v7.app.AppCompatCallback
Known Indirect Subclasses

Class Overview

Implemented this in order for AppCompat to be able to callback in certain situations.

This should be provided to create(android.app.Activity, AppCompatCallback).

Summary

Public Methods
abstract void onSupportActionModeFinished(ActionMode mode)
Called when a support action mode has finished.
abstract void onSupportActionModeStarted(ActionMode mode)
Called when a support action mode has been started.

Public Methods

public abstract void onSupportActionModeFinished (ActionMode mode)

Called when a support action mode has finished.

Parameters
mode The action mode that just finished.

public abstract void onSupportActionModeStarted (ActionMode mode)

Called when a support action mode has been started.

Parameters
mode The new action mode.