aospa: extensions: Add GlobalSettingSwitchPreference

Just renamed from SystemSetting*

Change-Id: I4fd7e5960f2b68185c7e38b30c2421d5a4495bdf
This commit is contained in:
Adithya R 2023-10-23 17:26:46 +05:30 committed by Adithya
parent 82fc02848d
commit 9103a52d00
2 changed files with 124 additions and 0 deletions

View File

@ -0,0 +1,51 @@
/*
* Copyright (C) 2014 The CyanogenMod Project
* Copyright (C) 2017 AICP
*
* 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 co.aospa.framework.preference;
import android.content.Context;
import androidx.preference.SwitchPreference;
import android.util.AttributeSet;
public class GlobalSettingSwitchPreference extends SwitchPreference {
public GlobalSettingSwitchPreference(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
setPreferenceDataStore(new GlobalSettingsStore(context.getContentResolver()));
}
public GlobalSettingSwitchPreference(Context context, AttributeSet attrs) {
super(context, attrs);
setPreferenceDataStore(new GlobalSettingsStore(context.getContentResolver()));
}
public GlobalSettingSwitchPreference(Context context) {
super(context);
setPreferenceDataStore(new GlobalSettingsStore(context.getContentResolver()));
}
@Override
protected void onSetInitialValue(boolean restoreValue, Object defaultValue) {
// This is what default TwoStatePreference implementation is doing without respecting
// real default value:
//setChecked(restoreValue ? getPersistedBoolean(mChecked)
// : (Boolean) defaultValue);
// Instead, we better do
setChecked(restoreValue ? getPersistedBoolean((Boolean) defaultValue)
: (Boolean) defaultValue);
}
}

View File

@ -0,0 +1,73 @@
/*
* Copyright (C) 2017 AICP
*
* 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 co.aospa.framework.preference;
import android.content.ContentResolver;
import android.preference.PreferenceDataStore;
import android.provider.Settings;
public class GlobalSettingsStore extends androidx.preference.PreferenceDataStore
implements PreferenceDataStore {
private ContentResolver mContentResolver;
public GlobalSettingsStore(ContentResolver contentResolver) {
mContentResolver = contentResolver;
}
public boolean getBoolean(String key, boolean defValue) {
return getInt(key, defValue ? 1 : 0) != 0;
}
public float getFloat(String key, float defValue) {
return Settings.Global.getFloat(mContentResolver, key, defValue);
}
public int getInt(String key, int defValue) {
return Settings.Global.getInt(mContentResolver, key, defValue);
}
public long getLong(String key, long defValue) {
return Settings.Global.getLong(mContentResolver, key, defValue);
}
public String getString(String key, String defValue) {
String result = Settings.Global.getString(mContentResolver, key);
return result == null ? defValue : result;
}
public void putBoolean(String key, boolean value) {
putInt(key, value ? 1 : 0);
}
public void putFloat(String key, float value) {
Settings.Global.putFloat(mContentResolver, key, value);
}
public void putInt(String key, int value) {
Settings.Global.putInt(mContentResolver, key, value);
}
public void putLong(String key, long value) {
Settings.Global.putLong(mContentResolver, key, value);
}
public void putString(String key, String value) {
Settings.Global.putString(mContentResolver, key, value);
}
}