1 /* 2 * Copyright (C) 2018 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 17 package com.android.settings.notification; 18 19 import android.content.Context; 20 21 import androidx.preference.Preference; 22 23 import com.android.settings.R; 24 import com.android.settingslib.core.lifecycle.Lifecycle; 25 26 public class ZenRuleNotifFooterPreferenceController extends 27 AbstractZenCustomRulePreferenceController { 28 ZenRuleNotifFooterPreferenceController(Context context, Lifecycle lifecycle, String key)29 public ZenRuleNotifFooterPreferenceController(Context context, Lifecycle lifecycle, 30 String key) { 31 super(context, key, lifecycle); 32 } 33 34 @Override isAvailable()35 public boolean isAvailable() { 36 if (!super.isAvailable() || mRule.getZenPolicy() == null) { 37 return false; 38 } 39 40 41 return mRule.getZenPolicy().shouldHideAllVisualEffects() 42 || mRule.getZenPolicy().shouldShowAllVisualEffects(); 43 } 44 45 @Override updateState(Preference preference)46 public void updateState(Preference preference) { 47 super.updateState(preference); 48 if (mRule == null || mRule.getZenPolicy() == null) { 49 return; 50 } 51 52 if (mRule.getZenPolicy().shouldShowAllVisualEffects()) { 53 preference.setTitle(R.string.zen_mode_restrict_notifications_mute_footer); 54 } else if (mRule.getZenPolicy().shouldHideAllVisualEffects()) { 55 preference.setTitle(R.string.zen_mode_restrict_notifications_hide_footer); 56 } else { 57 preference.setTitle(null); 58 } 59 } 60 } 61