blob: b61fa36f0e2a24b2eb2b9caec76a46662d31fda3 [file] [log] [blame]
/*
* 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 android.view;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.view.WindowInsets.Type.InsetsType;
import android.view.inputmethod.EditorInfo;
/**
* Listener that encapsulates a request to
* {@link WindowInsetsController#controlWindowInsetsAnimation}.
*
* <p>
* Insets can be controlled with the supplied {@link WindowInsetsAnimationController} 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 WindowInsetsController#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 WindowInsetsController#controlWindowInsetsAnimation
*/
public interface WindowInsetsAnimationControlListener {
/**
* 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 InsetsType}s it was able to gain control over. Note that this may be
* different than the types passed into
* {@link WindowInsetsController#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 WindowInsetsAnimationController#isReady
*/
void onReady(@NonNull WindowInsetsAnimationController controller, @InsetsType int types);
/**
* Called when the request for control over the insets has
* {@link WindowInsetsAnimationController#finish finished}.
*
* Once this callback is invoked, the supplied {@link WindowInsetsAnimationController}
* is no longer {@link WindowInsetsAnimationController#isReady() ready}.
*
* Control will not be regained until a new request
* to {@link WindowInsetsController#controlWindowInsetsAnimation} is made.
*
* @param controller the controller which has finished.
* @see WindowInsetsAnimationController#isFinished
*/
void onFinished(@NonNull WindowInsetsAnimationController controller);
/**
* Called when the request for control over the insets has been cancelled, either
* because the {@link android.os.CancellationSignal} associated with the
* {@link WindowInsetsController#controlWindowInsetsAnimation 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 {@link WindowInsetsAnimationController}
* is no longer {@link WindowInsetsAnimationController#isReady() ready}.
*
* Control will not be regained until a new request
* to {@link WindowInsetsController#controlWindowInsetsAnimation} is made.
*
* @param controller the controller which has been cancelled, or null if the request
* was cancelled before {@link #onReady} was invoked.
* @see WindowInsetsAnimationController#isCancelled
*/
void onCancelled(@Nullable WindowInsetsAnimationController controller);
}