public abstract class

OnBackPressedCallback

extends java.lang.Object

 java.lang.Object

↳androidx.activity.OnBackPressedCallback

Gradle dependencies

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

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

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

Overview

Class for handling OnBackPressedDispatcher.onBackPressed() callbacks without strongly coupling that implementation to a subclass of ComponentActivity.

This class maintains its own enabled state. Only when this callback is enabled will it receive callbacks to OnBackPressedCallback.handleOnBackPressed().

Note that the enabled state is an additional layer on top of the LifecycleOwner passed to OnBackPressedDispatcher.addCallback(LifecycleOwner, OnBackPressedCallback) which controls when the callback is added and removed to the dispatcher.

By calling OnBackPressedCallback.remove(), this callback will be removed from any OnBackPressedDispatcher it has been added to. It is strongly recommended to instead disable this callback to handle temporary changes in state.

Summary

Constructors
publicOnBackPressedCallback(boolean enabled)

Create a OnBackPressedCallback.

Methods
public abstract voidhandleOnBackPressed()

Callback for handling the OnBackPressedDispatcher.onBackPressed() event.

public final booleanisEnabled()

Checks whether this callback should be considered enabled.

public final voidremove()

Removes this callback from any OnBackPressedDispatcher it is currently added to.

public final voidsetEnabled(boolean enabled)

Set the enabled state of the callback.

from java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

Constructors

public OnBackPressedCallback(boolean enabled)

Create a OnBackPressedCallback.

Parameters:

enabled: The default enabled state for this callback.

See also: OnBackPressedCallback.setEnabled(boolean)

Methods

public final void setEnabled(boolean enabled)

Set the enabled state of the callback. Only when this callback is enabled will it receive callbacks to OnBackPressedCallback.handleOnBackPressed().

Note that the enabled state is an additional layer on top of the LifecycleOwner passed to OnBackPressedDispatcher.addCallback(LifecycleOwner, OnBackPressedCallback) which controls when the callback is added and removed to the dispatcher.

Parameters:

enabled: whether the callback should be considered enabled

public final boolean isEnabled()

Checks whether this callback should be considered enabled. Only when this callback is enabled will it receive callbacks to OnBackPressedCallback.handleOnBackPressed().

Returns:

Whether this callback should be considered enabled.

public final void remove()

Removes this callback from any OnBackPressedDispatcher it is currently added to.

public abstract void handleOnBackPressed()

Callback for handling the OnBackPressedDispatcher.onBackPressed() event.

Source

/*
 * Copyright 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.activity;

import androidx.annotation.MainThread;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
import androidx.annotation.OptIn;
import androidx.core.os.BuildCompat;
import androidx.core.util.Consumer;
import androidx.lifecycle.LifecycleOwner;

import java.util.concurrent.CopyOnWriteArrayList;

/**
 * Class for handling {@link OnBackPressedDispatcher#onBackPressed()} callbacks without
 * strongly coupling that implementation to a subclass of {@link ComponentActivity}.
 * <p>
 * This class maintains its own {@link #isEnabled() enabled state}. Only when this callback
 * is enabled will it receive callbacks to {@link #handleOnBackPressed()}.
 * <p>
 * Note that the enabled state is an additional layer on top of the
 * {@link androidx.lifecycle.LifecycleOwner} passed to
 * {@link OnBackPressedDispatcher#addCallback(LifecycleOwner, OnBackPressedCallback)}
 * which controls when the callback is added and removed to the dispatcher.
 * <p>
 * By calling {@link #remove()}, this callback will be removed from any
 * {@link OnBackPressedDispatcher} it has been added to. It is strongly recommended
 * to instead disable this callback to handle temporary changes in state.
 *
 * @see ComponentActivity#getOnBackPressedDispatcher()
 */
public abstract class OnBackPressedCallback {

    private boolean mEnabled;
    private CopyOnWriteArrayList<Cancellable> mCancellables = new CopyOnWriteArrayList<>();
    private Consumer<Boolean> mEnabledConsumer;

    /**
     * Create a {@link OnBackPressedCallback}.
     *
     * @param enabled The default enabled state for this callback.
     * @see #setEnabled(boolean)
     */
    public OnBackPressedCallback(boolean enabled) {
        mEnabled = enabled;
    }

    /**
     * Set the enabled state of the callback. Only when this callback
     * is enabled will it receive callbacks to {@link #handleOnBackPressed()}.
     * <p>
     * Note that the enabled state is an additional layer on top of the
     * {@link androidx.lifecycle.LifecycleOwner} passed to
     * {@link OnBackPressedDispatcher#addCallback(LifecycleOwner, OnBackPressedCallback)}
     * which controls when the callback is added and removed to the dispatcher.
     *
     * @param enabled whether the callback should be considered enabled
     */
    @OptIn(markerClass = BuildCompat.PrereleaseSdkCheck.class)
    @MainThread
    public final void setEnabled(boolean enabled) {
        mEnabled = enabled;
        if (mEnabledConsumer != null) {
            mEnabledConsumer.accept(mEnabled);
        }
    }

    /**
     * Checks whether this callback should be considered enabled. Only when this callback
     * is enabled will it receive callbacks to {@link #handleOnBackPressed()}.
     *
     * @return Whether this callback should be considered enabled.
     */
    @MainThread
    public final boolean isEnabled() {
        return mEnabled;
    }

    /**
     * Removes this callback from any {@link OnBackPressedDispatcher} it is currently
     * added to.
     */
    @MainThread
    public final void remove() {
        for (Cancellable cancellable: mCancellables) {
            cancellable.cancel();
        }
    }

    /**
     * Callback for handling the {@link OnBackPressedDispatcher#onBackPressed()} event.
     */
    @MainThread
    public abstract void handleOnBackPressed();

    void addCancellable(@NonNull Cancellable cancellable) {
        mCancellables.add(cancellable);
    }

    void removeCancellable(@NonNull Cancellable cancellable) {
        mCancellables.remove(cancellable);
    }

    void setIsEnabledConsumer(@Nullable Consumer<Boolean> isEnabled) {
        mEnabledConsumer = isEnabled;
    }
}