Bug: 294546335 Test: manual Flag: EXEMPT cleanup Change-Id: I02c632291dae1639af51b6fb23db1a534eaf03c6
77 lines
2.5 KiB
Java
77 lines
2.5 KiB
Java
/*
|
|
* Copyright 2024 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.inputmethod;
|
|
|
|
import static android.app.settings.SettingsEnums.ACTION_STICKY_KEYS_DISABLED;
|
|
import static android.app.settings.SettingsEnums.ACTION_STICKY_KEYS_ENABLED;
|
|
|
|
import android.content.Context;
|
|
import android.hardware.input.InputSettings;
|
|
import android.net.Uri;
|
|
import android.provider.Settings;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.lifecycle.LifecycleObserver;
|
|
import androidx.preference.PreferenceScreen;
|
|
import androidx.preference.TwoStatePreference;
|
|
|
|
public class KeyboardAccessibilityStickyKeysController extends
|
|
InputSettingPreferenceController implements
|
|
LifecycleObserver {
|
|
|
|
private TwoStatePreference mTwoStatePreference;
|
|
|
|
public KeyboardAccessibilityStickyKeysController(@NonNull Context context,
|
|
@NonNull String key) {
|
|
super(context, key);
|
|
}
|
|
|
|
@Override
|
|
public void displayPreference(@NonNull PreferenceScreen screen) {
|
|
super.displayPreference(screen);
|
|
mTwoStatePreference = screen.findPreference(getPreferenceKey());
|
|
}
|
|
|
|
@Override
|
|
public boolean isChecked() {
|
|
return InputSettings.isAccessibilityStickyKeysEnabled(mContext);
|
|
}
|
|
|
|
@Override
|
|
public boolean setChecked(boolean isChecked) {
|
|
InputSettings.setAccessibilityStickyKeysEnabled(mContext,
|
|
isChecked);
|
|
mMetricsFeatureProvider.action(mContext,
|
|
isChecked ? ACTION_STICKY_KEYS_ENABLED : ACTION_STICKY_KEYS_DISABLED);
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
protected void onInputSettingUpdated() {
|
|
if (mTwoStatePreference != null) {
|
|
mTwoStatePreference.setChecked(
|
|
InputSettings.isAccessibilityStickyKeysEnabled(mContext));
|
|
}
|
|
}
|
|
|
|
@Override
|
|
protected Uri getSettingUri() {
|
|
return Settings.Secure.getUriFor(
|
|
Settings.Secure.ACCESSIBILITY_STICKY_KEYS);
|
|
}
|
|
}
|