public interface

WindowInsetsAnimationControlListenerCompat

 androidx.core.view.WindowInsetsAnimationControlListenerCompat

Gradle dependencies

compile group: 'androidx.core', name: 'core', version: '1.9.0-alpha04'

  • groupId: androidx.core
  • artifactId: core
  • version: 1.9.0-alpha04

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

Androidx artifact mapping:

androidx.core:core com.android.support:support-compat

Overview

Listener that encapsulates a request to WindowInsetsControllerCompat.controlWindowInsetsAnimation(int, long, Interpolator, CancellationSignal, WindowInsetsAnimationControlListenerCompat).

Insets can be controlled with the supplied WindowInsetsAnimationControllerCompat from WindowInsetsAnimationControlListenerCompat.onReady(WindowInsetsAnimationControllerCompat, int) until either WindowInsetsAnimationControlListenerCompat.onFinished(WindowInsetsAnimationControllerCompat) or WindowInsetsAnimationControlListenerCompat.onCancelled(WindowInsetsAnimationControllerCompat).

Once the control over insets is finished or cancelled, it will not be regained until a new request to WindowInsetsControllerCompat.controlWindowInsetsAnimation(int, long, Interpolator, CancellationSignal, WindowInsetsAnimationControlListenerCompat) is made.

The request to control insets can fail immediately. In that case WindowInsetsAnimationControlListenerCompat.onCancelled(WindowInsetsAnimationControllerCompat) will be invoked without a preceding WindowInsetsAnimationControlListenerCompat.onReady(WindowInsetsAnimationControllerCompat, int).

Summary

Methods
public voidonCancelled(WindowInsetsAnimationControllerCompat controller)

Called when the request for control over the insets has been cancelled, either because the associated with the request has been invoked, or the window has lost control over the insets (e.g.

public voidonFinished(WindowInsetsAnimationControllerCompat controller)

Called when the request for control over the insets has finished.

public voidonReady(WindowInsetsAnimationControllerCompat controller, int types)

Called when the animation is ready to be controlled.

Methods

public void onReady(WindowInsetsAnimationControllerCompat controller, int types)

Called when the animation is ready to be controlled. This may be delayed when the IME needs to redraw because of an change, or when the window is starting up.

Parameters:

controller: The controller to control the inset animation.
types: The WindowInsetsCompat.Types it was able to gain control over. Note that this may be different than the types passed into WindowInsetsControllerCompat.controlWindowInsetsAnimation(int, long, Interpolator, CancellationSignal, WindowInsetsAnimationControlListenerCompat) in case the window wasn't able to gain the controls because it wasn't the IME target or not currently the window that's controlling the system bars.

See also: WindowInsetsAnimationControllerCompat.isReady()

public void onFinished(WindowInsetsAnimationControllerCompat controller)

Called when the request for control over the insets has finished.

Once this callback is invoked, the supplied WindowInsetsAnimationControllerCompat is no longer ready.

Control will not be regained until a new request to WindowInsetsControllerCompat.controlWindowInsetsAnimation(int, long, Interpolator, CancellationSignal, WindowInsetsAnimationControlListenerCompat) is made.

Parameters:

controller: the controller which has finished.

See also: WindowInsetsAnimationControllerCompat.isFinished()

public void onCancelled(WindowInsetsAnimationControllerCompat controller)

Called when the request for control over the insets has been cancelled, either because the associated with the request has been invoked, or the window has lost control over the insets (e.g. because it lost focus).

Once this callback is invoked, the supplied WindowInsetsAnimationControllerCompat is no longer ready.

Control will not be regained until a new request to WindowInsetsControllerCompat.controlWindowInsetsAnimation(int, long, Interpolator, CancellationSignal, WindowInsetsAnimationControlListenerCompat) is made.

Parameters:

controller: the controller which has been cancelled, or null if the request was cancelled before WindowInsetsAnimationControlListenerCompat.onReady(WindowInsetsAnimationControllerCompat, int) was invoked.

See also: WindowInsetsAnimationControllerCompat.isCancelled()

Source

/*
 * Copyright (C) 2018 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.core.view;

import android.view.inputmethod.EditorInfo;

import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.core.view.WindowInsetsCompat.Type;
import androidx.core.view.WindowInsetsCompat.Type.InsetsType;

/**
 * Listener that encapsulates a request to
 * {@link WindowInsetsControllerCompat#controlWindowInsetsAnimation}.
 *
 * <p>
 * Insets can be controlled with the supplied {@link WindowInsetsAnimationControllerCompat} from
 * {@link #onReady} until either {@link #onFinished} or {@link #onCancelled}.
 *
 * <p>
 * Once the control over insets is finished or cancelled, it will not be regained until a new
 * request to {@link WindowInsetsControllerCompat#controlWindowInsetsAnimation} is made.
 *
 * <p>
 * The request to control insets can fail immediately. In that case {@link #onCancelled} will be
 * invoked without a preceding {@link #onReady}.
 *
 * @see WindowInsetsControllerCompat#controlWindowInsetsAnimation
 */
public interface WindowInsetsAnimationControlListenerCompat {

    /**
     * Called when the animation is ready to be controlled. This may be delayed when the IME needs
     * to redraw because of an {@link EditorInfo} change, or when the window is starting up.
     *
     * @param controller The controller to control the inset animation.
     * @param types      The {@link Type}s it was able to gain control over. Note that this
     *                   may be different than the types passed into
     *                   {@link WindowInsetsControllerCompat#controlWindowInsetsAnimation} in
     *                   case the window wasn't able to gain the controls because it wasn't the
     *                   IME target or not currently the window that's controlling the system bars.
     * @see WindowInsetsAnimationControllerCompat#isReady
     */
    void onReady(@NonNull WindowInsetsAnimationControllerCompat controller, @InsetsType int types);

    /**
     * Called when the request for control over the insets has
     * {@link WindowInsetsAnimationControllerCompat#finish finished}.
     * <p>
     * Once this callback is invoked, the supplied {@link WindowInsetsAnimationControllerCompat}
     * is no longer {@link WindowInsetsAnimationControllerCompat#isReady() ready}.
     * <p>
     * Control will not be regained until a new request
     * to {@link WindowInsetsControllerCompat#controlWindowInsetsAnimation} is made.
     *
     * @param controller the controller which has finished.
     * @see WindowInsetsAnimationControllerCompat#isFinished
     */
    void onFinished(@NonNull WindowInsetsAnimationControllerCompat controller);

    /**
     * Called when the request for control over the insets has been cancelled, either
     * because the {@link android.os.CancellationSignal} associated with the
     * {@link WindowInsetsControllerCompat#controlWindowInsetsAnimation request} has been
     * invoked, or the window has lost control over the insets (e.g. because it lost focus).
     * <p>
     * Once this callback is invoked, the supplied {@link WindowInsetsAnimationControllerCompat}
     * is no longer {@link WindowInsetsAnimationControllerCompat#isReady() ready}.
     * <p>
     * Control will not be regained until a new request
     * to {@link WindowInsetsControllerCompat#controlWindowInsetsAnimation} is made.
     *
     * @param controller the controller which has been cancelled, or null if the request
     *                   was cancelled before {@link #onReady} was invoked.
     * @see WindowInsetsAnimationControllerCompat#isCancelled
     */
    void onCancelled(@Nullable WindowInsetsAnimationControllerCompat controller);
}