public interface

AppCompatCallback

 androidx.appcompat.app.AppCompatCallback

Subclasses:

MediaRouteDynamicChooserDialog, MediaRouteControllerDialog, MediaRouteChooserDialog, MediaRouteDynamicControllerDialog, SlicePermissionActivity, AppCompatActivity, AppCompatDialog, AlertDialog, DeviceCredentialHandlerActivity

Gradle dependencies

compile group: 'androidx.appcompat', name: 'appcompat', version: '1.6.0-alpha04'

  • groupId: androidx.appcompat
  • artifactId: appcompat
  • version: 1.6.0-alpha04

Artifact androidx.appcompat:appcompat:1.6.0-alpha04 it located at Google repository (https://maven.google.com/)

Androidx artifact mapping:

androidx.appcompat:appcompat com.android.support:appcompat-v7

Androidx class mapping:

androidx.appcompat.app.AppCompatCallback android.support.v7.app.AppCompatCallback

Overview

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

This should be provided to AppCompatDelegate.

Summary

Methods
public voidonSupportActionModeFinished(ActionMode mode)

Called when a support action mode has finished.

public voidonSupportActionModeStarted(ActionMode mode)

Called when a support action mode has been started.

public ActionModeonWindowStartingSupportActionMode(ActionMode.Callback callback)

Called when a support action mode is being started for this window.

Methods

public void onSupportActionModeStarted(ActionMode mode)

Called when a support action mode has been started.

Parameters:

mode: The new action mode.

public void onSupportActionModeFinished(ActionMode mode)

Called when a support action mode has finished.

Parameters:

mode: The action mode that just finished.

public ActionMode onWindowStartingSupportActionMode(ActionMode.Callback callback)

Called when a support action mode is being started for this window. Gives the callback an opportunity to handle the action mode in its own unique and beautiful way. If this method returns null the system can choose a way to present the mode or choose not to start the mode at all.

Parameters:

callback: Callback to control the lifecycle of this action mode

Returns:

The ActionMode that was started, or null if the system should present it

Source

/*
 * Copyright (C) 2014 The Android Open Source Project
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package androidx.appcompat.app;

import androidx.annotation.Nullable;
import androidx.appcompat.view.ActionMode;

/**
 * Implemented this in order for AppCompat to be able to callback in certain situations.
 * <p>
 * This should be provided to
 * {@link AppCompatDelegate#create(android.app.Activity, AppCompatCallback)}.
 */
public interface AppCompatCallback {

    /**
     * Called when a support action mode has been started.
     *
     * @param mode The new action mode.
     */
    void onSupportActionModeStarted(ActionMode mode);

    /**
     * Called when a support action mode has finished.
     *
     * @param mode The action mode that just finished.
     */
    void onSupportActionModeFinished(ActionMode mode);

    /**
     * Called when a support action mode is being started for this window. Gives the
     * callback an opportunity to handle the action mode in its own unique and
     * beautiful way. If this method returns null the system can choose a way
     * to present the mode or choose not to start the mode at all.
     *
     * @param callback Callback to control the lifecycle of this action mode
     * @return The ActionMode that was started, or null if the system should present it
     */
    @Nullable
    ActionMode onWindowStartingSupportActionMode(ActionMode.Callback callback);
}