• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (C) 2007 The Android Open Source Project
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *      http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 package android.preference;
18 
19 import java.util.ArrayList;
20 import java.util.HashSet;
21 import java.util.List;
22 
23 import android.app.Activity;
24 import android.app.Dialog;
25 import android.content.Context;
26 import android.content.DialogInterface;
27 import android.content.Intent;
28 import android.content.SharedPreferences;
29 import android.content.pm.ActivityInfo;
30 import android.content.pm.PackageManager;
31 import android.content.pm.ResolveInfo;
32 import android.content.pm.PackageManager.NameNotFoundException;
33 import android.content.res.XmlResourceParser;
34 import android.os.Bundle;
35 import android.util.Log;
36 
37 /**
38  * Used to help create {@link Preference} hierarchies
39  * from activities or XML.
40  * <p>
41  * In most cases, clients should use
42  * {@link PreferenceActivity#addPreferencesFromIntent} or
43  * {@link PreferenceActivity#addPreferencesFromResource(int)}.
44  *
45  * @see PreferenceActivity
46  */
47 public class PreferenceManager {
48 
49     private static final String TAG = "PreferenceManager";
50 
51     /**
52      * The Activity meta-data key for its XML preference hierarchy.
53      */
54     public static final String METADATA_KEY_PREFERENCES = "android.preference";
55 
56     public static final String KEY_HAS_SET_DEFAULT_VALUES = "_has_set_default_values";
57 
58     /**
59      * @see #getActivity()
60      */
61     private Activity mActivity;
62 
63     /**
64      * The context to use. This should always be set.
65      *
66      * @see #mActivity
67      */
68     private Context mContext;
69 
70     /**
71      * The counter for unique IDs.
72      */
73     private long mNextId = 0;
74 
75     /**
76      * The counter for unique request codes.
77      */
78     private int mNextRequestCode;
79 
80     /**
81      * Cached shared preferences.
82      */
83     private SharedPreferences mSharedPreferences;
84 
85     /**
86      * If in no-commit mode, the shared editor to give out (which will be
87      * committed when exiting no-commit mode).
88      */
89     private SharedPreferences.Editor mEditor;
90 
91     /**
92      * Blocks commits from happening on the shared editor. This is used when
93      * inflating the hierarchy. Do not set this directly, use {@link #setNoCommit(boolean)}
94      */
95     private boolean mNoCommit;
96 
97     /**
98      * The SharedPreferences name that will be used for all {@link Preference}s
99      * managed by this instance.
100      */
101     private String mSharedPreferencesName;
102 
103     /**
104      * The SharedPreferences mode that will be used for all {@link Preference}s
105      * managed by this instance.
106      */
107     private int mSharedPreferencesMode;
108 
109     /**
110      * The {@link PreferenceScreen} at the root of the preference hierarchy.
111      */
112     private PreferenceScreen mPreferenceScreen;
113 
114     /**
115      * List of activity result listeners.
116      */
117     private List<OnActivityResultListener> mActivityResultListeners;
118 
119     /**
120      * List of activity stop listeners.
121      */
122     private List<OnActivityStopListener> mActivityStopListeners;
123 
124     /**
125      * List of activity destroy listeners.
126      */
127     private List<OnActivityDestroyListener> mActivityDestroyListeners;
128 
129     /**
130      * List of dialogs that should be dismissed when we receive onNewIntent in
131      * our PreferenceActivity.
132      */
133     private List<DialogInterface> mPreferencesScreens;
134 
135     private OnPreferenceTreeClickListener mOnPreferenceTreeClickListener;
136 
137     /**
138      * @hide
139      */
PreferenceManager(Activity activity, int firstRequestCode)140     public PreferenceManager(Activity activity, int firstRequestCode) {
141         mActivity = activity;
142         mNextRequestCode = firstRequestCode;
143 
144         init(activity);
145     }
146 
147     /**
148      * This constructor should ONLY be used when getting default values from
149      * an XML preference hierarchy.
150      * <p>
151      * The {@link PreferenceManager#PreferenceManager(Activity)}
152      * should be used ANY time a preference will be displayed, since some preference
153      * types need an Activity for managed queries.
154      */
PreferenceManager(Context context)155     private PreferenceManager(Context context) {
156         init(context);
157     }
158 
init(Context context)159     private void init(Context context) {
160         mContext = context;
161 
162         setSharedPreferencesName(getDefaultSharedPreferencesName(context));
163     }
164 
165     /**
166      * Returns a list of {@link Activity} (indirectly) that match a given
167      * {@link Intent}.
168      *
169      * @param queryIntent The Intent to match.
170      * @return The list of {@link ResolveInfo} that point to the matched
171      *         activities.
172      */
queryIntentActivities(Intent queryIntent)173     private List<ResolveInfo> queryIntentActivities(Intent queryIntent) {
174         return mContext.getPackageManager().queryIntentActivities(queryIntent,
175                 PackageManager.GET_META_DATA);
176     }
177 
178     /**
179      * Inflates a preference hierarchy from the preference hierarchies of
180      * {@link Activity Activities} that match the given {@link Intent}. An
181      * {@link Activity} defines its preference hierarchy with meta-data using
182      * the {@link #METADATA_KEY_PREFERENCES} key.
183      * <p>
184      * If a preference hierarchy is given, the new preference hierarchies will
185      * be merged in.
186      *
187      * @param queryIntent The intent to match activities.
188      * @param rootPreferences Optional existing hierarchy to merge the new
189      *            hierarchies into.
190      * @return The root hierarchy (if one was not provided, the new hierarchy's
191      *         root).
192      */
inflateFromIntent(Intent queryIntent, PreferenceScreen rootPreferences)193     PreferenceScreen inflateFromIntent(Intent queryIntent, PreferenceScreen rootPreferences) {
194         final List<ResolveInfo> activities = queryIntentActivities(queryIntent);
195         final HashSet<String> inflatedRes = new HashSet<String>();
196 
197         for (int i = activities.size() - 1; i >= 0; i--) {
198             final ActivityInfo activityInfo = activities.get(i).activityInfo;
199             final Bundle metaData = activityInfo.metaData;
200 
201             if ((metaData == null) || !metaData.containsKey(METADATA_KEY_PREFERENCES)) {
202                 continue;
203             }
204 
205             // Need to concat the package with res ID since the same res ID
206             // can be re-used across contexts
207             final String uniqueResId = activityInfo.packageName + ":"
208                     + activityInfo.metaData.getInt(METADATA_KEY_PREFERENCES);
209 
210             if (!inflatedRes.contains(uniqueResId)) {
211                 inflatedRes.add(uniqueResId);
212 
213                 final Context context;
214                 try {
215                     context = mContext.createPackageContext(activityInfo.packageName, 0);
216                 } catch (NameNotFoundException e) {
217                     Log.w(TAG, "Could not create context for " + activityInfo.packageName + ": "
218                         + Log.getStackTraceString(e));
219                     continue;
220                 }
221 
222                 final PreferenceInflater inflater = new PreferenceInflater(context, this);
223                 final XmlResourceParser parser = activityInfo.loadXmlMetaData(context
224                         .getPackageManager(), METADATA_KEY_PREFERENCES);
225                 rootPreferences = (PreferenceScreen) inflater
226                         .inflate(parser, rootPreferences, true);
227                 parser.close();
228             }
229         }
230 
231         rootPreferences.onAttachedToHierarchy(this);
232 
233         return rootPreferences;
234     }
235 
236     /**
237      * Inflates a preference hierarchy from XML. If a preference hierarchy is
238      * given, the new preference hierarchies will be merged in.
239      *
240      * @param context The context of the resource.
241      * @param resId The resource ID of the XML to inflate.
242      * @param rootPreferences Optional existing hierarchy to merge the new
243      *            hierarchies into.
244      * @return The root hierarchy (if one was not provided, the new hierarchy's
245      *         root).
246      * @hide
247      */
inflateFromResource(Context context, int resId, PreferenceScreen rootPreferences)248     public PreferenceScreen inflateFromResource(Context context, int resId,
249             PreferenceScreen rootPreferences) {
250         // Block commits
251         setNoCommit(true);
252 
253         final PreferenceInflater inflater = new PreferenceInflater(context, this);
254         rootPreferences = (PreferenceScreen) inflater.inflate(resId, rootPreferences, true);
255         rootPreferences.onAttachedToHierarchy(this);
256 
257         // Unblock commits
258         setNoCommit(false);
259 
260         return rootPreferences;
261     }
262 
createPreferenceScreen(Context context)263     public PreferenceScreen createPreferenceScreen(Context context) {
264         final PreferenceScreen preferenceScreen = new PreferenceScreen(context, null);
265         preferenceScreen.onAttachedToHierarchy(this);
266         return preferenceScreen;
267     }
268 
269     /**
270      * Called by a preference to get a unique ID in its hierarchy.
271      *
272      * @return A unique ID.
273      */
getNextId()274     long getNextId() {
275         synchronized (this) {
276             return mNextId++;
277         }
278     }
279 
280     /**
281      * Returns the current name of the SharedPreferences file that preferences managed by
282      * this will use.
283      *
284      * @return The name that can be passed to {@link Context#getSharedPreferences(String, int)}.
285      * @see Context#getSharedPreferences(String, int)
286      */
getSharedPreferencesName()287     public String getSharedPreferencesName() {
288         return mSharedPreferencesName;
289     }
290 
291     /**
292      * Sets the name of the SharedPreferences file that preferences managed by this
293      * will use.
294      *
295      * @param sharedPreferencesName The name of the SharedPreferences file.
296      * @see Context#getSharedPreferences(String, int)
297      */
setSharedPreferencesName(String sharedPreferencesName)298     public void setSharedPreferencesName(String sharedPreferencesName) {
299         mSharedPreferencesName = sharedPreferencesName;
300         mSharedPreferences = null;
301     }
302 
303     /**
304      * Returns the current mode of the SharedPreferences file that preferences managed by
305      * this will use.
306      *
307      * @return The mode that can be passed to {@link Context#getSharedPreferences(String, int)}.
308      * @see Context#getSharedPreferences(String, int)
309      */
getSharedPreferencesMode()310     public int getSharedPreferencesMode() {
311         return mSharedPreferencesMode;
312     }
313 
314     /**
315      * Sets the mode of the SharedPreferences file that preferences managed by this
316      * will use.
317      *
318      * @param sharedPreferencesMode The mode of the SharedPreferences file.
319      * @see Context#getSharedPreferences(String, int)
320      */
setSharedPreferencesMode(int sharedPreferencesMode)321     public void setSharedPreferencesMode(int sharedPreferencesMode) {
322         mSharedPreferencesMode = sharedPreferencesMode;
323         mSharedPreferences = null;
324     }
325 
326     /**
327      * Gets a SharedPreferences instance that preferences managed by this will
328      * use.
329      *
330      * @return A SharedPreferences instance pointing to the file that contains
331      *         the values of preferences that are managed by this.
332      */
getSharedPreferences()333     public SharedPreferences getSharedPreferences() {
334         if (mSharedPreferences == null) {
335             mSharedPreferences = mContext.getSharedPreferences(mSharedPreferencesName,
336                     mSharedPreferencesMode);
337         }
338 
339         return mSharedPreferences;
340     }
341 
342     /**
343      * Gets a SharedPreferences instance that points to the default file that is
344      * used by the preference framework in the given context.
345      *
346      * @param context The context of the preferences whose values are wanted.
347      * @return A SharedPreferences instance that can be used to retrieve and
348      *         listen to values of the preferences.
349      */
getDefaultSharedPreferences(Context context)350     public static SharedPreferences getDefaultSharedPreferences(Context context) {
351         return context.getSharedPreferences(getDefaultSharedPreferencesName(context),
352                 getDefaultSharedPreferencesMode());
353     }
354 
getDefaultSharedPreferencesName(Context context)355     private static String getDefaultSharedPreferencesName(Context context) {
356         return context.getPackageName() + "_preferences";
357     }
358 
getDefaultSharedPreferencesMode()359     private static int getDefaultSharedPreferencesMode() {
360         return Context.MODE_PRIVATE;
361     }
362 
363     /**
364      * Returns the root of the preference hierarchy managed by this class.
365      *
366      * @return The {@link PreferenceScreen} object that is at the root of the hierarchy.
367      */
getPreferenceScreen()368     PreferenceScreen getPreferenceScreen() {
369         return mPreferenceScreen;
370     }
371 
372     /**
373      * Sets the root of the preference hierarchy.
374      *
375      * @param preferenceScreen The root {@link PreferenceScreen} of the preference hierarchy.
376      * @return Whether the {@link PreferenceScreen} given is different than the previous.
377      */
setPreferences(PreferenceScreen preferenceScreen)378     boolean setPreferences(PreferenceScreen preferenceScreen) {
379         if (preferenceScreen != mPreferenceScreen) {
380             mPreferenceScreen = preferenceScreen;
381             return true;
382         }
383 
384         return false;
385     }
386 
387     /**
388      * Finds a {@link Preference} based on its key.
389      *
390      * @param key The key of the preference to retrieve.
391      * @return The {@link Preference} with the key, or null.
392      * @see PreferenceGroup#findPreference(CharSequence)
393      */
findPreference(CharSequence key)394     public Preference findPreference(CharSequence key) {
395         if (mPreferenceScreen == null) {
396             return null;
397         }
398 
399         return mPreferenceScreen.findPreference(key);
400     }
401 
402     /**
403      * Sets the default values from a preference hierarchy in XML. This should
404      * be called by the application's main activity.
405      * <p>
406      * If {@code readAgain} is false, this will only set the default values if this
407      * method has never been called in the past (or the
408      * {@link #KEY_HAS_SET_DEFAULT_VALUES} in the default value shared
409      * preferences file is false). To attempt to set the default values again
410      * bypassing this check, set {@code readAgain} to true.
411      *
412      * @param context The context of the shared preferences.
413      * @param resId The resource ID of the preference hierarchy XML file.
414      * @param readAgain Whether to re-read the default values.
415      *            <p>
416      *            Note: this will NOT reset preferences back to their default
417      *            values. For that functionality, use
418      *            {@link PreferenceManager#getDefaultSharedPreferences(Context)}
419      *            and clear it followed by a call to this method with this
420      *            parameter set to true.
421      */
setDefaultValues(Context context, int resId, boolean readAgain)422     public static void setDefaultValues(Context context, int resId, boolean readAgain) {
423 
424         // Use the default shared preferences name and mode
425         setDefaultValues(context, getDefaultSharedPreferencesName(context),
426                 getDefaultSharedPreferencesMode(), resId, readAgain);
427     }
428 
429     /**
430      * Similar to {@link #setDefaultValues(Context, int, boolean)} but allows
431      * the client to provide the filename and mode of the shared preferences
432      * file.
433      *
434      * @see #setDefaultValues(Context, int, boolean)
435      * @see #setSharedPreferencesName(String)
436      * @see #setSharedPreferencesMode(int)
437      */
setDefaultValues(Context context, String sharedPreferencesName, int sharedPreferencesMode, int resId, boolean readAgain)438     public static void setDefaultValues(Context context, String sharedPreferencesName,
439             int sharedPreferencesMode, int resId, boolean readAgain) {
440         final SharedPreferences defaultValueSp = context.getSharedPreferences(
441                 KEY_HAS_SET_DEFAULT_VALUES, Context.MODE_PRIVATE);
442 
443         if (readAgain || !defaultValueSp.getBoolean(KEY_HAS_SET_DEFAULT_VALUES, false)) {
444             final PreferenceManager pm = new PreferenceManager(context);
445             pm.setSharedPreferencesName(sharedPreferencesName);
446             pm.setSharedPreferencesMode(sharedPreferencesMode);
447             pm.inflateFromResource(context, resId, null);
448 
449             defaultValueSp.edit().putBoolean(KEY_HAS_SET_DEFAULT_VALUES, true).commit();
450         }
451     }
452 
453     /**
454      * Returns an editor to use when modifying the shared preferences.
455      * <p>
456      * Do NOT commit unless {@link #shouldCommit()} returns true.
457      *
458      * @return An editor to use to write to shared preferences.
459      * @see #shouldCommit()
460      */
getEditor()461     SharedPreferences.Editor getEditor() {
462 
463         if (mNoCommit) {
464             if (mEditor == null) {
465                 mEditor = getSharedPreferences().edit();
466             }
467 
468             return mEditor;
469         } else {
470             return getSharedPreferences().edit();
471         }
472     }
473 
474     /**
475      * Whether it is the client's responsibility to commit on the
476      * {@link #getEditor()}. This will return false in cases where the writes
477      * should be batched, for example when inflating preferences from XML.
478      *
479      * @return Whether the client should commit.
480      */
shouldCommit()481     boolean shouldCommit() {
482         return !mNoCommit;
483     }
484 
setNoCommit(boolean noCommit)485     private void setNoCommit(boolean noCommit) {
486         if (!noCommit && mEditor != null) {
487             mEditor.commit();
488         }
489 
490         mNoCommit = noCommit;
491     }
492 
493     /**
494      * Returns the activity that shows the preferences. This is useful for doing
495      * managed queries, but in most cases the use of {@link #getContext()} is
496      * preferred.
497      * <p>
498      * This will return null if this class was instantiated with a Context
499      * instead of Activity. For example, when setting the default values.
500      *
501      * @return The activity that shows the preferences.
502      * @see #mContext
503      */
getActivity()504     Activity getActivity() {
505         return mActivity;
506     }
507 
508     /**
509      * Returns the context. This is preferred over {@link #getActivity()} when
510      * possible.
511      *
512      * @return The context.
513      */
getContext()514     Context getContext() {
515         return mContext;
516     }
517 
518     /**
519      * Registers a listener.
520      *
521      * @see OnActivityResultListener
522      */
registerOnActivityResultListener(OnActivityResultListener listener)523     void registerOnActivityResultListener(OnActivityResultListener listener) {
524         synchronized (this) {
525             if (mActivityResultListeners == null) {
526                 mActivityResultListeners = new ArrayList<OnActivityResultListener>();
527             }
528 
529             if (!mActivityResultListeners.contains(listener)) {
530                 mActivityResultListeners.add(listener);
531             }
532         }
533     }
534 
535     /**
536      * Unregisters a listener.
537      *
538      * @see OnActivityResultListener
539      */
unregisterOnActivityResultListener(OnActivityResultListener listener)540     void unregisterOnActivityResultListener(OnActivityResultListener listener) {
541         synchronized (this) {
542             if (mActivityResultListeners != null) {
543                 mActivityResultListeners.remove(listener);
544             }
545         }
546     }
547 
548     /**
549      * Called by the {@link PreferenceManager} to dispatch a subactivity result.
550      */
dispatchActivityResult(int requestCode, int resultCode, Intent data)551     void dispatchActivityResult(int requestCode, int resultCode, Intent data) {
552         List<OnActivityResultListener> list;
553 
554         synchronized (this) {
555             if (mActivityResultListeners == null) return;
556             list = new ArrayList<OnActivityResultListener>(mActivityResultListeners);
557         }
558 
559         final int N = list.size();
560         for (int i = 0; i < N; i++) {
561             if (list.get(i).onActivityResult(requestCode, resultCode, data)) {
562                 break;
563             }
564         }
565     }
566 
567     /**
568      * Registers a listener.
569      *
570      * @see OnActivityStopListener
571      */
registerOnActivityStopListener(OnActivityStopListener listener)572     void registerOnActivityStopListener(OnActivityStopListener listener) {
573         synchronized (this) {
574             if (mActivityStopListeners == null) {
575                 mActivityStopListeners = new ArrayList<OnActivityStopListener>();
576             }
577 
578             if (!mActivityStopListeners.contains(listener)) {
579                 mActivityStopListeners.add(listener);
580             }
581         }
582     }
583 
584     /**
585      * Unregisters a listener.
586      *
587      * @see OnActivityStopListener
588      */
unregisterOnActivityStopListener(OnActivityStopListener listener)589     void unregisterOnActivityStopListener(OnActivityStopListener listener) {
590         synchronized (this) {
591             if (mActivityStopListeners != null) {
592                 mActivityStopListeners.remove(listener);
593             }
594         }
595     }
596 
597     /**
598      * Called by the {@link PreferenceManager} to dispatch the activity stop
599      * event.
600      */
dispatchActivityStop()601     void dispatchActivityStop() {
602         List<OnActivityStopListener> list;
603 
604         synchronized (this) {
605             if (mActivityStopListeners == null) return;
606             list = new ArrayList<OnActivityStopListener>(mActivityStopListeners);
607         }
608 
609         final int N = list.size();
610         for (int i = 0; i < N; i++) {
611             list.get(i).onActivityStop();
612         }
613     }
614 
615     /**
616      * Registers a listener.
617      *
618      * @see OnActivityDestroyListener
619      */
registerOnActivityDestroyListener(OnActivityDestroyListener listener)620     void registerOnActivityDestroyListener(OnActivityDestroyListener listener) {
621         synchronized (this) {
622             if (mActivityDestroyListeners == null) {
623                 mActivityDestroyListeners = new ArrayList<OnActivityDestroyListener>();
624             }
625 
626             if (!mActivityDestroyListeners.contains(listener)) {
627                 mActivityDestroyListeners.add(listener);
628             }
629         }
630     }
631 
632     /**
633      * Unregisters a listener.
634      *
635      * @see OnActivityDestroyListener
636      */
unregisterOnActivityDestroyListener(OnActivityDestroyListener listener)637     void unregisterOnActivityDestroyListener(OnActivityDestroyListener listener) {
638         synchronized (this) {
639             if (mActivityDestroyListeners != null) {
640                 mActivityDestroyListeners.remove(listener);
641             }
642         }
643     }
644 
645     /**
646      * Called by the {@link PreferenceManager} to dispatch the activity destroy
647      * event.
648      */
dispatchActivityDestroy()649     void dispatchActivityDestroy() {
650         List<OnActivityDestroyListener> list = null;
651 
652         synchronized (this) {
653             if (mActivityDestroyListeners != null) {
654                 list = new ArrayList<OnActivityDestroyListener>(mActivityDestroyListeners);
655             }
656         }
657 
658         if (list != null) {
659             final int N = list.size();
660             for (int i = 0; i < N; i++) {
661                 list.get(i).onActivityDestroy();
662             }
663         }
664 
665         // Dismiss any PreferenceScreens still showing
666         dismissAllScreens();
667     }
668 
669     /**
670      * Returns a request code that is unique for the activity. Each subsequent
671      * call to this method should return another unique request code.
672      *
673      * @return A unique request code that will never be used by anyone other
674      *         than the caller of this method.
675      */
getNextRequestCode()676     int getNextRequestCode() {
677         synchronized (this) {
678             return mNextRequestCode++;
679         }
680     }
681 
addPreferencesScreen(DialogInterface screen)682     void addPreferencesScreen(DialogInterface screen) {
683         synchronized (this) {
684 
685             if (mPreferencesScreens == null) {
686                 mPreferencesScreens = new ArrayList<DialogInterface>();
687             }
688 
689             mPreferencesScreens.add(screen);
690         }
691     }
692 
removePreferencesScreen(DialogInterface screen)693     void removePreferencesScreen(DialogInterface screen) {
694         synchronized (this) {
695 
696             if (mPreferencesScreens == null) {
697                 return;
698             }
699 
700             mPreferencesScreens.remove(screen);
701         }
702     }
703 
704     /**
705      * Called by {@link PreferenceActivity} to dispatch the new Intent event.
706      *
707      * @param intent The new Intent.
708      */
dispatchNewIntent(Intent intent)709     void dispatchNewIntent(Intent intent) {
710         dismissAllScreens();
711     }
712 
dismissAllScreens()713     private void dismissAllScreens() {
714         // Remove any of the previously shown preferences screens
715         ArrayList<DialogInterface> screensToDismiss;
716 
717         synchronized (this) {
718 
719             if (mPreferencesScreens == null) {
720                 return;
721             }
722 
723             screensToDismiss = new ArrayList<DialogInterface>(mPreferencesScreens);
724             mPreferencesScreens.clear();
725         }
726 
727         for (int i = screensToDismiss.size() - 1; i >= 0; i--) {
728             screensToDismiss.get(i).dismiss();
729         }
730     }
731 
732     /**
733      * Sets the callback to be invoked when a {@link Preference} in the
734      * hierarchy rooted at this {@link PreferenceManager} is clicked.
735      *
736      * @param listener The callback to be invoked.
737      */
setOnPreferenceTreeClickListener(OnPreferenceTreeClickListener listener)738     void setOnPreferenceTreeClickListener(OnPreferenceTreeClickListener listener) {
739         mOnPreferenceTreeClickListener = listener;
740     }
741 
getOnPreferenceTreeClickListener()742     OnPreferenceTreeClickListener getOnPreferenceTreeClickListener() {
743         return mOnPreferenceTreeClickListener;
744     }
745 
746     /**
747      * Interface definition for a callback to be invoked when a
748      * {@link Preference} in the hierarchy rooted at this {@link PreferenceScreen} is
749      * clicked.
750      */
751     interface OnPreferenceTreeClickListener {
752         /**
753          * Called when a preference in the tree rooted at this
754          * {@link PreferenceScreen} has been clicked.
755          *
756          * @param preferenceScreen The {@link PreferenceScreen} that the
757          *        preference is located in.
758          * @param preference The preference that was clicked.
759          * @return Whether the click was handled.
760          */
onPreferenceTreeClick(PreferenceScreen preferenceScreen, Preference preference)761         boolean onPreferenceTreeClick(PreferenceScreen preferenceScreen, Preference preference);
762     }
763 
764     /**
765      * Interface definition for a class that will be called when the container's activity
766      * receives an activity result.
767      */
768     public interface OnActivityResultListener {
769 
770         /**
771          * See Activity's onActivityResult.
772          *
773          * @return Whether the request code was handled (in which case
774          *         subsequent listeners will not be called.
775          */
onActivityResult(int requestCode, int resultCode, Intent data)776         boolean onActivityResult(int requestCode, int resultCode, Intent data);
777     }
778 
779     /**
780      * Interface definition for a class that will be called when the container's activity
781      * is stopped.
782      */
783     public interface OnActivityStopListener {
784 
785         /**
786          * See Activity's onStop.
787          */
onActivityStop()788         void onActivityStop();
789     }
790 
791     /**
792      * Interface definition for a class that will be called when the container's activity
793      * is destroyed.
794      */
795     public interface OnActivityDestroyListener {
796 
797         /**
798          * See Activity's onDestroy.
799          */
onActivityDestroy()800         void onActivityDestroy();
801     }
802 
803 }
804