Usage is removed in Change: I5d8027628dcf06d99274a6a7a781218d146519eb And we can clean up its subclasses and resources also. Bug: 234570979 Test: m Settings Change-Id: I4a24a34e814401749894a85375a05691b537f5a3
73 lines
2.6 KiB
Java
73 lines
2.6 KiB
Java
/*
|
|
* Copyright (C) 2022 The Android Open Source 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.accessibility;
|
|
|
|
import android.content.ContentResolver;
|
|
import android.content.Context;
|
|
import android.content.res.Resources;
|
|
import android.provider.Settings;
|
|
|
|
import com.android.settings.R;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.List;
|
|
import java.util.stream.Collectors;
|
|
|
|
/**
|
|
* Data class for storing the configurations related to the font size.
|
|
*/
|
|
final class FontSizeData extends PreviewSizeData<Float> {
|
|
private static final float FONT_SCALE_DEF_VALUE = 1.0f;
|
|
|
|
FontSizeData(Context context) {
|
|
super(context);
|
|
|
|
final Resources resources = getContext().getResources();
|
|
final ContentResolver resolver = getContext().getContentResolver();
|
|
final List<String> strEntryValues =
|
|
Arrays.asList(resources.getStringArray(R.array.entryvalues_font_size));
|
|
setDefaultValue(FONT_SCALE_DEF_VALUE);
|
|
final float currentScale =
|
|
Settings.System.getFloat(resolver, Settings.System.FONT_SCALE, getDefaultValue());
|
|
setInitialIndex(fontSizeValueToIndex(currentScale, strEntryValues.toArray(new String[0])));
|
|
setValues(strEntryValues.stream().map(Float::valueOf).collect(Collectors.toList()));
|
|
}
|
|
|
|
@Override
|
|
void commit(int currentProgress) {
|
|
final ContentResolver resolver = getContext().getContentResolver();
|
|
Settings.System.putFloat(resolver, Settings.System.FONT_SCALE,
|
|
getValues().get(currentProgress));
|
|
}
|
|
|
|
/**
|
|
* Utility function that returns the index in a string array with which the represented value is
|
|
* the closest to a given float value.
|
|
*/
|
|
private static int fontSizeValueToIndex(float val, String[] indices) {
|
|
float lastVal = Float.parseFloat(indices[0]);
|
|
for (int i = 1; i < indices.length; i++) {
|
|
float thisVal = Float.parseFloat(indices[i]);
|
|
if (val < (lastVal + (thisVal - lastVal) * .5f)) {
|
|
return i - 1;
|
|
}
|
|
lastVal = thisVal;
|
|
}
|
|
return indices.length - 1;
|
|
}
|
|
}
|