/* * 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.Context; import android.widget.SeekBar; import androidx.annotation.NonNull; import androidx.preference.PreferenceScreen; import com.android.settings.core.BasePreferenceController; import com.android.settings.widget.LabeledSeekBarPreference; /** * The controller of {@link LabeledSeekBarPreference} that listens to display size and font size * settings changes and updates preview size threshold smoothly. */ class PreviewSizeSeekBarController extends BasePreferenceController implements TextReadingResetController.ResetStateListener { private final PreviewSizeData mSizeData; private boolean mSeekByTouch; private ProgressInteractionListener mInteractionListener; private LabeledSeekBarPreference mSeekBarPreference; private final SeekBar.OnSeekBarChangeListener mSeekBarChangeListener = new SeekBar.OnSeekBarChangeListener() { @Override public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) { mInteractionListener.notifyPreferenceChanged(); if (!mSeekByTouch && mInteractionListener != null) { mInteractionListener.onProgressChanged(); } } @Override public void onStartTrackingTouch(SeekBar seekBar) { mSeekByTouch = true; } @Override public void onStopTrackingTouch(SeekBar seekBar) { mSeekByTouch = false; if (mInteractionListener != null) { mInteractionListener.onEndTrackingTouch(); } } }; PreviewSizeSeekBarController(Context context, String preferenceKey, @NonNull PreviewSizeData sizeData) { super(context, preferenceKey); mSizeData = sizeData; } void setInteractionListener(ProgressInteractionListener interactionListener) { mInteractionListener = interactionListener; } @Override public int getAvailabilityStatus() { return AVAILABLE; } @Override public void displayPreference(PreferenceScreen screen) { super.displayPreference(screen); final int dataSize = mSizeData.getValues().size(); final int initialIndex = mSizeData.getInitialIndex(); mSeekBarPreference = screen.findPreference(getPreferenceKey()); mSeekBarPreference.setMax(dataSize - 1); mSeekBarPreference.setProgress(initialIndex); mSeekBarPreference.setContinuousUpdates(true); mSeekBarPreference.setOnSeekBarChangeListener(mSeekBarChangeListener); } @Override public void resetState() { final int defaultProgress = mSizeData.getValues().indexOf(mSizeData.getDefaultValue()); mSeekBarPreference.setProgress(defaultProgress); } /** * Interface for callbacks when users interact with the seek bar. */ interface ProgressInteractionListener { /** * Called when the progress is changed. */ void notifyPreferenceChanged(); /** * Called when the progress is changed without tracking touch. */ void onProgressChanged(); /** * Called when the seek bar is end tracking. */ void onEndTrackingTouch(); } }