/**@class android.preference.PreferenceActivity.Header implements android.os.Parcelable @extends java.lang.Object Description of a single Header item that the user can select. @deprecated Use the <a href="{@docRoot}jetpack/androidx.html">AndroidX</a> <a href="{@docRoot}reference/androidx/preference/package-summary.html"> Preference Library</a> for consistent behavior across all devices. For more information on using the AndroidX Preference Library see <a href="{@docRoot}guide/topics/ui/settings.html">Settings</a>. */ var Header = { /** Identifier for this header, to correlate with a new list when it is updated. The default value is {@link android.preference.PreferenceActivity#HEADER_ID_UNDEFINED}, meaning no id. @attr ref android.R.styleable#PreferenceHeader_id */ id : "null", /** Resource ID of title of the header that is shown to the user. @attr ref android.R.styleable#PreferenceHeader_title */ titleRes : "null", /** Title of the header that is shown to the user. @attr ref android.R.styleable#PreferenceHeader_title */ title : "null", /** Resource ID of optional summary describing what this header controls. @attr ref android.R.styleable#PreferenceHeader_summary */ summaryRes : "null", /** Optional summary describing what this header controls. @attr ref android.R.styleable#PreferenceHeader_summary */ summary : "null", /** Resource ID of optional text to show as the title in the bread crumb. @attr ref android.R.styleable#PreferenceHeader_breadCrumbTitle */ breadCrumbTitleRes : "null", /** Optional text to show as the title in the bread crumb. @attr ref android.R.styleable#PreferenceHeader_breadCrumbTitle */ breadCrumbTitle : "null", /** Resource ID of optional text to show as the short title in the bread crumb. @attr ref android.R.styleable#PreferenceHeader_breadCrumbShortTitle */ breadCrumbShortTitleRes : "null", /** Optional text to show as the short title in the bread crumb. @attr ref android.R.styleable#PreferenceHeader_breadCrumbShortTitle */ breadCrumbShortTitle : "null", /** Optional icon resource to show for this header. @attr ref android.R.styleable#PreferenceHeader_icon */ iconRes : "null", /** Full class name of the fragment to display when this header is selected. @attr ref android.R.styleable#PreferenceHeader_fragment */ fragment : "null", /** Optional arguments to supply to the fragment when it is instantiated. */ fragmentArguments : "null", /** Intent to launch when the preference is selected. */ intent : "null", /** Optional additional data for use by subclasses of PreferenceActivity. */ extras : "null", /***/ CREATOR : "null", /**Return the currently set title. If {@link #titleRes} is set, this resource is loaded from <var>res</var> and returned. Otherwise {@link #title} is returned. */ getTitle : function( ) {}, /**Return the currently set summary. If {@link #summaryRes} is set, this resource is loaded from <var>res</var> and returned. Otherwise {@link #summary} is returned. */ getSummary : function( ) {}, /**Return the currently set bread crumb title. If {@link #breadCrumbTitleRes} is set, this resource is loaded from <var>res</var> and returned. Otherwise {@link #breadCrumbTitle} is returned. */ getBreadCrumbTitle : function( ) {}, /**Return the currently set bread crumb short title. If {@link #breadCrumbShortTitleRes} is set, this resource is loaded from <var>res</var> and returned. Otherwise {@link #breadCrumbShortTitle} is returned. */ getBreadCrumbShortTitle : function( ) {}, /** */ describeContents : function( ) {}, /** */ writeToParcel : function( ) {}, /** */ readFromParcel : function( ) {}, };