1 /* 2 * Copyright (C) 2018 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file 5 * except in compliance with the License. You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software distributed under the 10 * License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 11 * KIND, either express or implied. See the License for the specific language governing 12 * permissions and limitations under the License. 13 */ 14 package com.android.settings.accessibility; 15 16 import android.content.Context; 17 import android.os.Bundle; 18 import android.provider.Settings; 19 import android.support.v7.preference.Preference; 20 import android.text.TextUtils; 21 22 import com.android.settings.R; 23 import com.android.settings.core.TogglePreferenceController; 24 25 public class MagnificationNavbarPreferenceController extends TogglePreferenceController { 26 27 private boolean mIsFromSUW = false; 28 MagnificationNavbarPreferenceController(Context context, String key)29 public MagnificationNavbarPreferenceController(Context context, String key) { 30 super(context, key); 31 } 32 33 @Override isChecked()34 public boolean isChecked() { 35 return MagnificationPreferenceFragment.isChecked(mContext.getContentResolver(), 36 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_NAVBAR_ENABLED); 37 } 38 39 @Override setChecked(boolean isChecked)40 public boolean setChecked(boolean isChecked) { 41 return MagnificationPreferenceFragment.setChecked(mContext.getContentResolver(), 42 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_NAVBAR_ENABLED, isChecked); 43 } 44 setIsFromSUW(boolean fromSUW)45 public void setIsFromSUW(boolean fromSUW) { 46 mIsFromSUW = fromSUW; 47 } 48 49 @Override handlePreferenceTreeClick(Preference preference)50 public boolean handlePreferenceTreeClick(Preference preference) { 51 if (getPreferenceKey().equals(preference.getKey())) { 52 Bundle extras = preference.getExtras(); 53 extras.putString(AccessibilitySettings.EXTRA_PREFERENCE_KEY, 54 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_NAVBAR_ENABLED); 55 extras.putInt(AccessibilitySettings.EXTRA_TITLE_RES, 56 R.string.accessibility_screen_magnification_navbar_title); 57 extras.putInt(AccessibilitySettings.EXTRA_SUMMARY_RES, 58 R.string.accessibility_screen_magnification_navbar_summary); 59 extras.putBoolean(AccessibilitySettings.EXTRA_CHECKED, isChecked()); 60 extras.putBoolean(AccessibilitySettings.EXTRA_LAUNCHED_FROM_SUW, mIsFromSUW); 61 } 62 return false; 63 } 64 65 @Override getAvailabilityStatus()66 public int getAvailabilityStatus() { 67 return MagnificationPreferenceFragment.isApplicable(mContext.getResources()) 68 ? AVAILABLE 69 : UNSUPPORTED_ON_DEVICE; 70 } 71 72 @Override isSliceable()73 public boolean isSliceable() { 74 return TextUtils.equals(getPreferenceKey(), 75 "screen_magnification_navbar_preference_screen"); 76 } 77 78 @Override getSummary()79 public CharSequence getSummary() { 80 int resId = 0; 81 if (mIsFromSUW) { 82 resId = R.string.accessibility_screen_magnification_navbar_short_summary; 83 } else { 84 final boolean enabled = isChecked(); 85 resId = (enabled ? R.string.accessibility_feature_state_on : 86 R.string.accessibility_feature_state_off); 87 } 88 return mContext.getText(resId); 89 } 90 } 91