"Yes" and "no" were redefined many times with no clear benefit, so this consolidates them into one definition. Bug: 243843096 Test: Build, install, and open the Settings app Test: atest SettingsRoboTests Change-Id: I5f84d09f223efd478461ded93aeac82bf7b128d8
114 lines
4.0 KiB
Java
114 lines
4.0 KiB
Java
/*
|
|
* Copyright (C) 2018 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.icu.text.MessageFormat;
|
|
import android.os.Bundle;
|
|
import android.provider.Settings;
|
|
import android.text.TextUtils;
|
|
|
|
import androidx.preference.Preference;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.core.TogglePreferenceController;
|
|
|
|
public class MagnificationGesturesPreferenceController extends TogglePreferenceController {
|
|
|
|
private boolean mIsFromSUW = false;
|
|
|
|
public MagnificationGesturesPreferenceController(Context context, String key) {
|
|
super(context, key);
|
|
}
|
|
|
|
@Override
|
|
public boolean isChecked() {
|
|
return MagnificationPreferenceFragment.isChecked(mContext.getContentResolver(),
|
|
Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_ENABLED);
|
|
}
|
|
|
|
@Override
|
|
public boolean setChecked(boolean isChecked) {
|
|
return MagnificationPreferenceFragment.setChecked(mContext.getContentResolver(),
|
|
Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_ENABLED, isChecked);
|
|
}
|
|
|
|
public void setIsFromSUW(boolean fromSUW) {
|
|
mIsFromSUW = fromSUW;
|
|
}
|
|
|
|
@Override
|
|
public boolean handlePreferenceTreeClick(Preference preference) {
|
|
if (getPreferenceKey().equals(preference.getKey())) {
|
|
Bundle extras = preference.getExtras();
|
|
populateMagnificationGesturesPreferenceExtras(extras, mContext);
|
|
extras.putBoolean(AccessibilitySettings.EXTRA_CHECKED, isChecked());
|
|
extras.putBoolean(AccessibilitySettings.EXTRA_LAUNCHED_FROM_SUW, mIsFromSUW);
|
|
return true;
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public int getAvailabilityStatus() {
|
|
return AVAILABLE;
|
|
}
|
|
|
|
@Override
|
|
public boolean isSliceable() {
|
|
return TextUtils.equals(getPreferenceKey(),
|
|
"screen_magnification_gestures_preference_screen");
|
|
}
|
|
|
|
@Override
|
|
public boolean isPublicSlice() {
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public int getSliceHighlightMenuRes() {
|
|
return R.string.menu_key_accessibility;
|
|
}
|
|
|
|
@Override
|
|
public CharSequence getSummary() {
|
|
int resId = 0;
|
|
if (mIsFromSUW) {
|
|
resId = R.string.accessibility_screen_magnification_short_summary;
|
|
} else {
|
|
final boolean enabled = isChecked();
|
|
resId = (enabled ? R.string.on : R.string.off);
|
|
}
|
|
return mContext.getString(resId);
|
|
}
|
|
|
|
static void populateMagnificationGesturesPreferenceExtras(Bundle extras, Context context) {
|
|
extras.putString(AccessibilitySettings.EXTRA_PREFERENCE_KEY,
|
|
Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_ENABLED);
|
|
extras.putInt(AccessibilitySettings.EXTRA_TITLE_RES,
|
|
R.string.accessibility_screen_magnification_gestures_title);
|
|
|
|
String intro = context.getString(R.string.accessibility_screen_magnification_intro_text);
|
|
extras.putCharSequence(AccessibilitySettings.EXTRA_INTRO, intro);
|
|
|
|
String summary = context.getString(R.string.accessibility_screen_magnification_summary);
|
|
final Object[] numberArguments = {1, 2, 3, 4, 5};
|
|
summary = MessageFormat.format(summary, numberArguments);
|
|
extras.putCharSequence(AccessibilitySettings.EXTRA_HTML_DESCRIPTION, summary);
|
|
|
|
extras.putInt(AccessibilitySettings.EXTRA_VIDEO_RAW_RESOURCE_ID,
|
|
R.raw.accessibility_screen_magnification);
|
|
}
|
|
}
|