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.app.NotificationManager.Policy; 20 import android.content.Context; 21 import android.support.v7.preference.Preference; 22 import android.support.v7.preference.PreferenceScreen; 23 24 import com.android.settings.R; 25 import com.android.settingslib.core.lifecycle.Lifecycle; 26 27 public class ZenFooterPreferenceController extends AbstractZenModePreferenceController { 28 ZenFooterPreferenceController(Context context, Lifecycle lifecycle, String key)29 public ZenFooterPreferenceController(Context context, Lifecycle lifecycle, 30 String key) { 31 super(context, key, lifecycle); 32 } 33 34 @Override isAvailable()35 public boolean isAvailable() { 36 return mBackend.mPolicy.suppressedVisualEffects == 0 37 || Policy.areAllVisualEffectsSuppressed(mBackend.mPolicy.suppressedVisualEffects); 38 } 39 40 @Override updateState(Preference preference)41 public void updateState(Preference preference) { 42 super.updateState(preference); 43 44 if (mBackend.mPolicy.suppressedVisualEffects == 0) { 45 preference.setTitle(R.string.zen_mode_restrict_notifications_mute_footer); 46 } else if (Policy.areAllVisualEffectsSuppressed(mBackend.mPolicy.suppressedVisualEffects)) { 47 preference.setTitle(R.string.zen_mode_restrict_notifications_hide_footer); 48 } else { 49 preference.setTitle(null); 50 } 51 } 52 hide(PreferenceScreen screen)53 protected void hide(PreferenceScreen screen) { 54 setVisible(screen, getPreferenceKey(), false /* visible */); 55 } 56 } 57