Create LineageGlobalSettingListPreference

Change-Id: Iaba7a070bda9abcdf162a72efa111a0a90d501a9
This commit is contained in:
Oliver Scott
2021-12-30 15:00:00 +01:00
committed by Michael Bestas
parent a97180fa58
commit ff5e7166f0
2 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,54 @@
/*
* Copyright (C) 2022 The LineageOS 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 lineageos.preference;
import android.content.Context;
import android.util.AttributeSet;
import lineageos.providers.LineageSettings;
public class LineageGlobalSettingListPreference extends SelfRemovingListPreference {
public LineageGlobalSettingListPreference(Context context, AttributeSet attrs, int defStyle) {
super(context, attrs, defStyle);
}
public LineageGlobalSettingListPreference(Context context, AttributeSet attrs) {
super(context, attrs);
}
public int getIntValue(int defValue) {
return getValue() == null ? defValue : Integer.valueOf(getValue());
}
@Override
protected boolean isPersisted() {
return LineageSettings.Global.getString(getContext().getContentResolver(),
getKey()) != null;
}
@Override
protected void putString(String key, String value) {
LineageSettings.Global.putString(getContext().getContentResolver(), key, value);
}
@Override
protected String getString(String key, String defaultValue) {
return LineageSettings.Global.getString(getContext().getContentResolver(),
key, defaultValue);
}
}