blob: dd9dd2562851e37adb6fb1342ba1ea9226a60b09 [file] [log] [blame]
The Android Open Source Project9066cfe2009-03-03 19:31:44 -08001/*
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
17package android.preference;
18
19import android.app.Dialog;
20import android.content.Context;
21import android.content.DialogInterface;
22import android.os.Bundle;
23import android.os.Parcel;
24import android.os.Parcelable;
Amith Yamasanica74c902009-06-17 16:56:08 -070025import android.text.TextUtils;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080026import android.util.AttributeSet;
27import android.view.View;
Amith Yamasani72e6bec2011-09-23 10:43:40 -070028import android.view.Window;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080029import android.widget.Adapter;
30import android.widget.AdapterView;
31import android.widget.ListAdapter;
32import android.widget.ListView;
33
34/**
35 * Represents a top-level {@link Preference} that
36 * is the root of a Preference hierarchy. A {@link PreferenceActivity}
37 * points to an instance of this class to show the preferences. To instantiate
38 * this class, use {@link PreferenceManager#createPreferenceScreen(Context)}.
39 * <ul>
40 * This class can appear in two places:
41 * <li> When a {@link PreferenceActivity} points to this, it is used as the root
42 * and is not shown (only the contained preferences are shown).
43 * <li> When it appears inside another preference hierarchy, it is shown and
44 * serves as the gateway to another screen of preferences (either by showing
45 * another screen of preferences as a {@link Dialog} or via a
46 * {@link Context#startActivity(android.content.Intent)} from the
47 * {@link Preference#getIntent()}). The children of this {@link PreferenceScreen}
48 * are NOT shown in the screen that this {@link PreferenceScreen} is shown in.
49 * Instead, a separate screen will be shown when this preference is clicked.
50 * </ul>
51 * <p>Here's an example XML layout of a PreferenceScreen:</p>
52 * <pre>
53&lt;PreferenceScreen
54 xmlns:android="http://schemas.android.com/apk/res/android"
55 android:key="first_preferencescreen"&gt;
56 &lt;CheckBoxPreference
57 android:key="wifi enabled"
58 android:title="WiFi" /&gt;
59 &lt;PreferenceScreen
60 android:key="second_preferencescreen"
61 android:title="WiFi settings"&gt;
62 &lt;CheckBoxPreference
63 android:key="prefer wifi"
64 android:title="Prefer WiFi" /&gt;
65 ... other preferences here ...
66 &lt;/PreferenceScreen&gt;
67&lt;/PreferenceScreen&gt; </pre>
68 * <p>
69 * In this example, the "first_preferencescreen" will be used as the root of the
70 * hierarchy and given to a {@link PreferenceActivity}. The first screen will
71 * show preferences "WiFi" (which can be used to quickly enable/disable WiFi)
72 * and "WiFi settings". The "WiFi settings" is the "second_preferencescreen" and when
73 * clicked will show another screen of preferences such as "Prefer WiFi" (and
74 * the other preferences that are children of the "second_preferencescreen" tag).
75 *
76 * @see PreferenceCategory
77 */
78public final class PreferenceScreen extends PreferenceGroup implements AdapterView.OnItemClickListener,
79 DialogInterface.OnDismissListener {
80
81 private ListAdapter mRootAdapter;
82
83 private Dialog mDialog;
Mathias Jeppsson15600032011-01-18 14:34:52 +010084
85 private ListView mListView;
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080086
87 /**
88 * Do NOT use this constructor, use {@link PreferenceManager#createPreferenceScreen(Context)}.
89 * @hide-
90 */
91 public PreferenceScreen(Context context, AttributeSet attrs) {
92 super(context, attrs, com.android.internal.R.attr.preferenceScreenStyle);
93 }
94
95 /**
96 * Returns an adapter that can be attached to a {@link PreferenceActivity}
Daisuke Miyakawa52a50782010-08-13 13:20:04 -070097 * or {@link PreferenceFragment} to show the preferences contained in this
98 * {@link PreferenceScreen}.
The Android Open Source Project9066cfe2009-03-03 19:31:44 -080099 * <p>
100 * This {@link PreferenceScreen} will NOT appear in the returned adapter, instead
101 * it appears in the hierarchy above this {@link PreferenceScreen}.
102 * <p>
103 * This adapter's {@link Adapter#getItem(int)} should always return a
104 * subclass of {@link Preference}.
105 *
106 * @return An adapter that provides the {@link Preference} contained in this
107 * {@link PreferenceScreen}.
108 */
109 public ListAdapter getRootAdapter() {
110 if (mRootAdapter == null) {
111 mRootAdapter = onCreateRootAdapter();
112 }
113
114 return mRootAdapter;
115 }
116
117 /**
118 * Creates the root adapter.
119 *
120 * @return An adapter that contains the preferences contained in this {@link PreferenceScreen}.
121 * @see #getRootAdapter()
122 */
123 protected ListAdapter onCreateRootAdapter() {
124 return new PreferenceGroupAdapter(this);
125 }
126
127 /**
128 * Binds a {@link ListView} to the preferences contained in this {@link PreferenceScreen} via
129 * {@link #getRootAdapter()}. It also handles passing list item clicks to the corresponding
130 * {@link Preference} contained by this {@link PreferenceScreen}.
131 *
132 * @param listView The list view to attach to.
133 */
134 public void bind(ListView listView) {
135 listView.setOnItemClickListener(this);
136 listView.setAdapter(getRootAdapter());
137
138 onAttachedToActivity();
139 }
140
141 @Override
142 protected void onClick() {
Dianne Hackbornb3cf10f2010-08-03 13:07:11 -0700143 if (getIntent() != null || getFragment() != null || getPreferenceCount() == 0) {
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800144 return;
145 }
146
147 showDialog(null);
148 }
149
150 private void showDialog(Bundle state) {
151 Context context = getContext();
Mathias Jeppsson15600032011-01-18 14:34:52 +0100152 if (mListView != null) {
153 mListView.setAdapter(null);
154 }
155 mListView = new ListView(context);
156 bind(mListView);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800157
Amith Yamasanica74c902009-06-17 16:56:08 -0700158 // Set the title bar if title is available, else no title bar
159 final CharSequence title = getTitle();
Amith Yamasani72e6bec2011-09-23 10:43:40 -0700160 Dialog dialog = mDialog = new Dialog(context, context.getThemeResId());
161 if (TextUtils.isEmpty(title)) {
162 dialog.getWindow().requestFeature(Window.FEATURE_NO_TITLE);
163 } else {
Amith Yamasanica74c902009-06-17 16:56:08 -0700164 dialog.setTitle(title);
165 }
Amith Yamasani72e6bec2011-09-23 10:43:40 -0700166 dialog.setContentView(mListView);
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800167 dialog.setOnDismissListener(this);
168 if (state != null) {
169 dialog.onRestoreInstanceState(state);
170 }
Amith Yamasanica74c902009-06-17 16:56:08 -0700171
The Android Open Source Project9066cfe2009-03-03 19:31:44 -0800172 // Add the screen to the list of preferences screens opened as dialogs
173 getPreferenceManager().addPreferencesScreen(dialog);
174
175 dialog.show();
176 }
177
178 public void onDismiss(DialogInterface dialog) {
179 mDialog = null;
180 getPreferenceManager().removePreferencesScreen(dialog);
181 }
182
183 /**
184 * Used to get a handle to the dialog.
185 * This is useful for cases where we want to manipulate the dialog
186 * as we would with any other activity or view.
187 */
188 public Dialog getDialog() {
189 return mDialog;
190 }
191
192 public void onItemClick(AdapterView parent, View view, int position, long id) {
193 Object item = getRootAdapter().getItem(position);
194 if (!(item instanceof Preference)) return;
195
196 final Preference preference = (Preference) item;
197 preference.performClick(this);
198 }
199
200 @Override
201 protected boolean isOnSameScreenAsChildren() {
202 return false;
203 }
204
205 @Override
206 protected Parcelable onSaveInstanceState() {
207 final Parcelable superState = super.onSaveInstanceState();
208 final Dialog dialog = mDialog;
209 if (dialog == null || !dialog.isShowing()) {
210 return superState;
211 }
212
213 final SavedState myState = new SavedState(superState);
214 myState.isDialogShowing = true;
215 myState.dialogBundle = dialog.onSaveInstanceState();
216 return myState;
217 }
218
219 @Override
220 protected void onRestoreInstanceState(Parcelable state) {
221 if (state == null || !state.getClass().equals(SavedState.class)) {
222 // Didn't save state for us in onSaveInstanceState
223 super.onRestoreInstanceState(state);
224 return;
225 }
226
227 SavedState myState = (SavedState) state;
228 super.onRestoreInstanceState(myState.getSuperState());
229 if (myState.isDialogShowing) {
230 showDialog(myState.dialogBundle);
231 }
232 }
233
234 private static class SavedState extends BaseSavedState {
235 boolean isDialogShowing;
236 Bundle dialogBundle;
237
238 public SavedState(Parcel source) {
239 super(source);
240 isDialogShowing = source.readInt() == 1;
241 dialogBundle = source.readBundle();
242 }
243
244 @Override
245 public void writeToParcel(Parcel dest, int flags) {
246 super.writeToParcel(dest, flags);
247 dest.writeInt(isDialogShowing ? 1 : 0);
248 dest.writeBundle(dialogBundle);
249 }
250
251 public SavedState(Parcelable superState) {
252 super(superState);
253 }
254
255 public static final Parcelable.Creator<SavedState> CREATOR =
256 new Parcelable.Creator<SavedState>() {
257 public SavedState createFromParcel(Parcel in) {
258 return new SavedState(in);
259 }
260
261 public SavedState[] newArray(int size) {
262 return new SavedState[size];
263 }
264 };
265 }
266
267}