diff options
author | Danny Baumann <dannybaumann@web.de> | 2014-11-11 13:13:39 +0100 |
---|---|---|
committer | Adnan Begovic <adnan@cyngn.com> | 2015-10-26 16:12:36 -0700 |
commit | 9dbe759780101777a351d40c34cf1e42bb293f4e (patch) | |
tree | 3620d7b42bf239fc33c4678b44398777fddf682a /src/com/android/settings | |
parent | 366c75943593cf39ef7c9e153bcfd8e16ae95eb4 (diff) | |
download | packages_apps_Settings-9dbe759780101777a351d40c34cf1e42bb293f4e.zip packages_apps_Settings-9dbe759780101777a351d40c34cf1e42bb293f4e.tar.gz packages_apps_Settings-9dbe759780101777a351d40c34cf1e42bb293f4e.tar.bz2 |
Add back a helper pref that holds a system setting.
Change-Id: I7d8978829bde1f1dd15bf59f464557f64aa07beb
Diffstat (limited to 'src/com/android/settings')
-rw-r--r-- | src/com/android/settings/cyanogenmod/SystemSettingSwitchPreference.java | 65 |
1 files changed, 65 insertions, 0 deletions
diff --git a/src/com/android/settings/cyanogenmod/SystemSettingSwitchPreference.java b/src/com/android/settings/cyanogenmod/SystemSettingSwitchPreference.java new file mode 100644 index 0000000..a936149 --- /dev/null +++ b/src/com/android/settings/cyanogenmod/SystemSettingSwitchPreference.java @@ -0,0 +1,65 @@ +/* + * Copyright (C) 2013 The CyanogenMod project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.settings.cyanogenmod; + +import android.content.Context; +import android.preference.SwitchPreference; +import android.provider.Settings; +import android.util.AttributeSet; + +public class SystemSettingSwitchPreference extends SwitchPreference { + public SystemSettingSwitchPreference(Context context, AttributeSet attrs, int defStyle) { + super(context, attrs, defStyle); + } + + public SystemSettingSwitchPreference(Context context, AttributeSet attrs) { + super(context, attrs); + } + + public SystemSettingSwitchPreference(Context context) { + super(context, null); + } + + @Override + protected boolean persistBoolean(boolean value) { + if (shouldPersist()) { + if (value == getPersistedBoolean(!value)) { + // It's already there, so the same as persisting + return true; + } + Settings.System.putInt(getContext().getContentResolver(), getKey(), value ? 1 : 0); + return true; + } + return false; + } + + @Override + protected boolean getPersistedBoolean(boolean defaultReturnValue) { + if (!shouldPersist()) { + return defaultReturnValue; + } + return Settings.System.getInt(getContext().getContentResolver(), + getKey(), defaultReturnValue ? 1 : 0) != 0; + } + + @Override + protected boolean isPersisted() { + // Using getString instead of getInt so we can simply check for null + // instead of catching an exception. (All values are stored as strings.) + return Settings.System.getString(getContext().getContentResolver(), getKey()) != null; + } +} |