This will allow us to access it from SystemUI. Bug: 346519570 Test: builds Flag: EXEMPT trivial refactor Change-Id: I5bc480bd4eb0cbf8a26989dd11c064e66e5ee70e
88 lines
3.2 KiB
Java
88 lines
3.2 KiB
Java
/*
|
|
* Copyright (C) 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.notification.modes;
|
|
|
|
import android.content.Context;
|
|
import android.service.notification.ZenPolicy;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.VisibleForTesting;
|
|
import androidx.preference.Preference;
|
|
import androidx.preference.TwoStatePreference;
|
|
|
|
import com.android.settingslib.notification.modes.ZenMode;
|
|
import com.android.settingslib.notification.modes.ZenModesBackend;
|
|
|
|
public class ZenModeNotifVisPreferenceController extends AbstractZenModePreferenceController
|
|
implements Preference.OnPreferenceChangeListener {
|
|
|
|
@VisibleForTesting
|
|
protected @ZenPolicy.VisualEffect int mEffect;
|
|
|
|
// if any of these effects are suppressed, this effect must be too
|
|
@VisibleForTesting
|
|
protected @ZenPolicy.VisualEffect int[] mParentSuppressedEffects;
|
|
|
|
public ZenModeNotifVisPreferenceController(Context context, String key,
|
|
@ZenPolicy.VisualEffect int visualEffect,
|
|
@ZenPolicy.VisualEffect int[] parentSuppressedEffects, ZenModesBackend backend) {
|
|
super(context, key, backend);
|
|
mEffect = visualEffect;
|
|
mParentSuppressedEffects = parentSuppressedEffects;
|
|
}
|
|
|
|
@Override
|
|
public boolean isAvailable() {
|
|
if (!super.isAvailable()) {
|
|
return false;
|
|
}
|
|
|
|
if (mEffect == ZenPolicy.VISUAL_EFFECT_LIGHTS) {
|
|
return mContext.getResources()
|
|
.getBoolean(com.android.internal.R.bool.config_intrusiveNotificationLed);
|
|
}
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public void updateState(Preference preference, @NonNull ZenMode zenMode) {
|
|
boolean suppressed = !zenMode.getPolicy().isVisualEffectAllowed(mEffect, false);
|
|
boolean parentSuppressed = false;
|
|
if (mParentSuppressedEffects != null) {
|
|
for (@ZenPolicy.VisualEffect int parentEffect : mParentSuppressedEffects) {
|
|
if (!zenMode.getPolicy().isVisualEffectAllowed(parentEffect, true)) {
|
|
parentSuppressed = true;
|
|
}
|
|
}
|
|
}
|
|
if (parentSuppressed) {
|
|
((TwoStatePreference) preference).setChecked(true);
|
|
onPreferenceChange(preference, true);
|
|
preference.setEnabled(false);
|
|
} else {
|
|
preference.setEnabled(true);
|
|
((TwoStatePreference) preference).setChecked(suppressed);
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean onPreferenceChange(Preference preference, Object newValue) {
|
|
final boolean allowEffect = !((Boolean) newValue);
|
|
return savePolicy(policy -> policy.showVisualEffect(mEffect, allowEffect));
|
|
}
|
|
}
|