added in version 24.1.0
belongs to Maven artifact com.android.support:preference-v7:28.0.0-alpha1

PreferenceFragmentCompat.OnPreferenceStartFragmentCallback

public static interface PreferenceFragmentCompat.OnPreferenceStartFragmentCallback

android.support.v7.preference.PreferenceFragmentCompat.OnPreferenceStartFragmentCallback


Interface that PreferenceFragment's containing activity should implement to be able to process preference items that wish to switch to a specified fragment.

Summary

Public methods

abstract boolean onPreferenceStartFragment(PreferenceFragmentCompat caller, Preference pref)

Called when the user has clicked on a Preference that has a fragment class name associated with it.

Public methods

onPreferenceStartFragment

added in version 24.1.0
boolean onPreferenceStartFragment (PreferenceFragmentCompat caller, 
                Preference pref)

Called when the user has clicked on a Preference that has a fragment class name associated with it. The implementation should instantiate and switch to an instance of the given fragment.

Parameters
caller PreferenceFragmentCompat: The fragment requesting navigation.

pref Preference: The preference requesting the fragment.

Returns
boolean true if the fragment creation has been handled