• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.text.TextUtils;
20 
21 import androidx.preference.Preference;
22 
23 import com.android.settings.R;
24 import com.android.settings.core.TogglePreferenceController;
25 
26 public class MagnificationNavbarPreferenceController extends TogglePreferenceController {
27 
28     private boolean mIsFromSUW = false;
29 
MagnificationNavbarPreferenceController(Context context, String key)30     public MagnificationNavbarPreferenceController(Context context, String key) {
31         super(context, key);
32     }
33 
34     @Override
isChecked()35     public boolean isChecked() {
36         return MagnificationPreferenceFragment.isChecked(mContext.getContentResolver(),
37                 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_NAVBAR_ENABLED);
38     }
39 
40     @Override
setChecked(boolean isChecked)41     public boolean setChecked(boolean isChecked) {
42         return MagnificationPreferenceFragment.setChecked(mContext.getContentResolver(),
43                 Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_NAVBAR_ENABLED, isChecked);
44     }
45 
setIsFromSUW(boolean fromSUW)46     public void setIsFromSUW(boolean fromSUW) {
47         mIsFromSUW = fromSUW;
48     }
49 
50     @Override
handlePreferenceTreeClick(Preference preference)51     public boolean handlePreferenceTreeClick(Preference preference) {
52         if (getPreferenceKey().equals(preference.getKey())) {
53             Bundle extras = preference.getExtras();
54             extras.putString(AccessibilitySettings.EXTRA_PREFERENCE_KEY,
55                     Settings.Secure.ACCESSIBILITY_DISPLAY_MAGNIFICATION_NAVBAR_ENABLED);
56             extras.putInt(AccessibilitySettings.EXTRA_TITLE_RES,
57                     R.string.accessibility_screen_magnification_navbar_title);
58             extras.putInt(AccessibilitySettings.EXTRA_SUMMARY_RES,
59                     R.string.accessibility_screen_magnification_navbar_summary);
60             extras.putBoolean(AccessibilitySettings.EXTRA_CHECKED, isChecked());
61             extras.putBoolean(AccessibilitySettings.EXTRA_LAUNCHED_FROM_SUW, mIsFromSUW);
62         }
63         return false;
64     }
65 
66     @Override
getAvailabilityStatus()67     public int getAvailabilityStatus() {
68         return MagnificationPreferenceFragment.isApplicable(mContext.getResources())
69                 ? AVAILABLE
70                 : UNSUPPORTED_ON_DEVICE;
71     }
72 
73     @Override
isSliceable()74     public boolean isSliceable() {
75         return TextUtils.equals(getPreferenceKey(),
76                 "screen_magnification_navbar_preference_screen");
77     }
78 
79     @Override
getSummary()80     public CharSequence getSummary() {
81         int resId = 0;
82         if (mIsFromSUW) {
83             resId = R.string.accessibility_screen_magnification_navbar_short_summary;
84         } else {
85             final boolean enabled = isChecked();
86             resId = (enabled ? R.string.accessibility_feature_state_on :
87                     R.string.accessibility_feature_state_off);
88         }
89         return mContext.getText(resId);
90     }
91 }
92