/* * Copyright (C) 2015 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 static com.android.settings.accessibility.ToggleAutoclickPreferenceController.MAX_AUTOCLICK_DELAY_MS; import static com.android.settings.accessibility.ToggleAutoclickPreferenceController.MIN_AUTOCLICK_DELAY_MS; import android.app.settings.SettingsEnums; import android.content.Context; import android.content.res.Resources; import androidx.preference.Preference; import com.android.settings.R; import com.android.settings.dashboard.DashboardFragment; import com.android.settings.search.BaseSearchIndexProvider; import com.android.settingslib.core.AbstractPreferenceController; import com.android.settingslib.core.lifecycle.Lifecycle; import com.android.settingslib.search.SearchIndexable; import java.util.ArrayList; import java.util.List; /** * Fragment for preference screen for settings related to Automatically click after mouse stops * feature. */ @SearchIndexable public class ToggleAutoclickPreferenceFragment extends DashboardFragment implements ToggleAutoclickPreferenceController.OnChangeListener { private static final String TAG = "AutoclickPrefFragment"; private static final List sControllers = new ArrayList<>(); /** * Resource ids from which autoclick preference summaries should be derived. The strings have * placeholder for integer delay value. */ private static final int[] mAutoclickPreferenceSummaries = { R.plurals.accessibilty_autoclick_preference_subtitle_extremely_short_delay, R.plurals.accessibilty_autoclick_preference_subtitle_very_short_delay, R.plurals.accessibilty_autoclick_preference_subtitle_short_delay, R.plurals.accessibilty_autoclick_preference_subtitle_long_delay, R.plurals.accessibilty_autoclick_preference_subtitle_very_long_delay }; /** * Gets string that should be used as a autoclick preference summary for provided autoclick * delay. * * @param resources Resources from which string should be retrieved. * @param delay Delay for whose value summary should be retrieved. */ static CharSequence getAutoclickPreferenceSummary(Resources resources, int delay) { int summaryIndex = getAutoclickPreferenceSummaryIndex(delay); return resources.getQuantityString( mAutoclickPreferenceSummaries[summaryIndex], delay, delay); } /** * Finds index of the summary that should be used for the provided autoclick delay. */ private static int getAutoclickPreferenceSummaryIndex(int delay) { if (delay <= MIN_AUTOCLICK_DELAY_MS) { return 0; } if (delay >= MAX_AUTOCLICK_DELAY_MS) { return mAutoclickPreferenceSummaries.length - 1; } int delayRange = MAX_AUTOCLICK_DELAY_MS - MIN_AUTOCLICK_DELAY_MS; int rangeSize = (delayRange) / (mAutoclickPreferenceSummaries.length - 1); return (delay - MIN_AUTOCLICK_DELAY_MS) / rangeSize; } @Override public int getMetricsCategory() { return SettingsEnums.ACCESSIBILITY_TOGGLE_AUTOCLICK; } @Override public int getHelpResource() { return R.string.help_url_autoclick; } @Override protected String getLogTag() { return TAG; } @Override protected int getPreferenceScreenResId() { return R.xml.accessibility_autoclick_settings; } @Override public void onResume() { super.onResume(); for (AbstractPreferenceController controller : sControllers) { ((ToggleAutoclickPreferenceController) controller).setOnChangeListener(this); } } @Override public void onPause() { super.onPause(); for (AbstractPreferenceController controller : sControllers) { ((ToggleAutoclickPreferenceController) controller).setOnChangeListener(null); } } @Override public void onCheckedChanged(Preference preference) { for (AbstractPreferenceController controller : sControllers) { controller.updateState(preference); } } @Override protected List createPreferenceControllers(Context context) { return buildPreferenceControllers(context, getSettingsLifecycle()); } private static List buildPreferenceControllers(Context context, Lifecycle lifecycle) { Resources resources = context.getResources(); String[] autoclickKeys = resources.getStringArray( R.array.accessibility_autoclick_control_selector_keys); final int length = autoclickKeys.length; for (int i = 0; i < length; i++) { sControllers.add(new ToggleAutoclickPreferenceController( context, lifecycle, autoclickKeys[i])); } return sControllers; } public static final BaseSearchIndexProvider SEARCH_INDEX_DATA_PROVIDER = new BaseSearchIndexProvider(R.xml.accessibility_autoclick_settings) { @Override public List createPreferenceControllers( Context context) { return buildPreferenceControllers(context, null); } }; }