public interface

FragmentResultOwner

 androidx.fragment.app.FragmentResultOwner

Subclasses:

FragmentManager

Gradle dependencies

compile group: 'androidx.fragment', name: 'fragment', version: '1.5.0-rc01'

  • groupId: androidx.fragment
  • artifactId: fragment
  • version: 1.5.0-rc01

Artifact androidx.fragment:fragment:1.5.0-rc01 it located at Google repository (https://maven.google.com/)

Androidx artifact mapping:

androidx.fragment:fragment com.android.support:support-fragment

Overview

A class that manages passing data between fragments.

Summary

Methods
public voidclearFragmentResult(java.lang.String requestKey)

Clears the stored result for the given requestKey.

public voidclearFragmentResultListener(java.lang.String requestKey)

Clears the stored FragmentResultListener for the given requestKey.

public voidsetFragmentResult(java.lang.String requestKey, Bundle result)

Sets the given result for the requestKey.

public voidsetFragmentResultListener(java.lang.String requestKey, LifecycleOwner lifecycleOwner, FragmentResultListener listener)

Sets the FragmentResultListener for a given requestKey.

Methods

public void setFragmentResult(java.lang.String requestKey, Bundle result)

Sets the given result for the requestKey. This result will be delivered to a FragmentResultListener that is called given to FragmentResultOwner.setFragmentResultListener(String, LifecycleOwner, FragmentResultListener) with the same requestKey. If no FragmentResultListener with the same key is set or the Lifecycle associated with the listener is not at least Lifecycle.State.STARTED, the result is stored until one becomes available, or FragmentResultOwner.clearFragmentResult(String) is called with the same requestKey.

Parameters:

requestKey: key used to identify the result
result: the result to be passed to another fragment

public void clearFragmentResult(java.lang.String requestKey)

Clears the stored result for the given requestKey. This clears any result that was previously set via FragmentResultOwner.setFragmentResult(String, Bundle) that hasn't yet been delivered to a FragmentResultListener.

Parameters:

requestKey: key used to identify the result

public void setFragmentResultListener(java.lang.String requestKey, LifecycleOwner lifecycleOwner, FragmentResultListener listener)

Sets the FragmentResultListener for a given requestKey. Once the given LifecycleOwner is at least in the Lifecycle.State.STARTED state, any results set by FragmentResultOwner.setFragmentResult(String, Bundle) using the same requestKey will be delivered to the callback. The callback will remain active until the LifecycleOwner reaches the Lifecycle.State.DESTROYED state or FragmentResultOwner.clearFragmentResultListener(String) is called with the same requestKey.

Parameters:

requestKey: requestKey used to identify the result
lifecycleOwner: lifecycleOwner for handling the result
listener: listener for result changes

public void clearFragmentResultListener(java.lang.String requestKey)

Clears the stored FragmentResultListener for the given requestKey. This clears any FragmentResultListener that was previously set via FragmentResultOwner.setFragmentResultListener(String, LifecycleOwner, FragmentResultListener).

Parameters:

requestKey: key used to identify the result

Source

/*
 * Copyright 2020 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.fragment.app;

import android.os.Bundle;

import androidx.annotation.NonNull;
import androidx.lifecycle.LifecycleOwner;

/**
 * A class that manages passing data between fragments.
 */
public interface FragmentResultOwner {

    /**
     * Sets the given result for the requestKey. This result will be delivered to a
     * {@link FragmentResultListener} that is called given to
     * {@link #setFragmentResultListener(String, LifecycleOwner, FragmentResultListener)} with
     * the same requestKey. If no {@link FragmentResultListener} with the same key is set or the
     * Lifecycle associated with the listener is not at least
     * {@link androidx.lifecycle.Lifecycle.State#STARTED}, the result is stored until one becomes
     * available, or {@link #clearFragmentResult(String)} is called with the same requestKey.
     *
     * @param requestKey key used to identify the result
     * @param result the result to be passed to another fragment
     */
    void setFragmentResult(@NonNull String requestKey, @NonNull Bundle result);

    /**
     * Clears the stored result for the given requestKey.
     *
     * This clears any result that was previously set via
     * {@link #setFragmentResult(String, Bundle)} that hasn't yet been delivered to a
     * {@link FragmentResultListener}.
     *
     * @param requestKey key used to identify the result
     */
    void clearFragmentResult(@NonNull String requestKey);

    /**
     * Sets the {@link FragmentResultListener} for a given requestKey. Once the given
     * {@link LifecycleOwner} is at least in the {@link androidx.lifecycle.Lifecycle.State#STARTED}
     * state, any results set by {@link #setFragmentResult(String, Bundle)} using the same
     * requestKey will be delivered to the
     * {@link FragmentResultListener#onFragmentResult(String, Bundle) callback}. The callback will
     * remain active until the LifecycleOwner reaches the
     * {@link androidx.lifecycle.Lifecycle.State#DESTROYED} state or
     * {@link #clearFragmentResultListener(String)} is called with the same requestKey.
     *
     * @param requestKey requestKey used to identify the result
     * @param lifecycleOwner lifecycleOwner for handling the result
     * @param listener listener for result changes
     */
    void setFragmentResultListener(@NonNull String requestKey,
            @NonNull LifecycleOwner lifecycleOwner, @NonNull FragmentResultListener listener);

    /**
     * Clears the stored {@link FragmentResultListener} for the given requestKey.
     *
     * This clears any {@link FragmentResultListener} that was previously set via
     * {@link #setFragmentResultListener(String, LifecycleOwner, FragmentResultListener)}.
     *
     * @param requestKey key used to identify the result
     */
    void clearFragmentResultListener(@NonNull String requestKey);
}