blob: d03f6ce2c68a423d3d372d6312f5e2794f92df05 [file] [log] [blame]
Joe Onorato2039e482010-11-29 14:54:24 -08001/*
2 * Copyright (C) 2010 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 com.android.systemui.statusbar.policy;
18
19import android.content.Context;
20import android.content.SharedPreferences;
21
22public class Prefs {
23 private static final String SHARED_PREFS_NAME = "status_bar";
24
Daniel Sandler552b1f02011-06-15 01:03:02 -040025 public static final String SHOWN_COMPAT_MODE_HELP = "shown_compat_mode_help";
Daniel Sandlerb17a7262012-10-05 14:32:50 -040026 public static final String SHOWN_QUICK_SETTINGS_HELP = "shown_quick_settings_help";
Daniel Sandler552b1f02011-06-15 01:03:02 -040027
John Spurlockdcf4f212013-05-21 17:19:53 -040028 public static final String HIDEYBAR_CONFIRMED = "hideybar_confirmed";
29
Joe Onorato2039e482010-11-29 14:54:24 -080030 public static SharedPreferences read(Context context) {
31 return context.getSharedPreferences(Prefs.SHARED_PREFS_NAME, Context.MODE_PRIVATE);
32 }
33
34 public static SharedPreferences.Editor edit(Context context) {
35 return context.getSharedPreferences(Prefs.SHARED_PREFS_NAME, Context.MODE_PRIVATE).edit();
36 }
37}