Merge "Move ZenModesBackend to SettingsLib." into main
This commit is contained in:
committed by
Android (Google) Code Review
commit
b67c157e2f
@@ -105,7 +105,8 @@ public class DndConditionCardController implements ConditionalCardController {
|
||||
+ mAppContext.getText(R.string.condition_zen_title))
|
||||
.setTitleText(mAppContext.getText(R.string.condition_zen_title).toString())
|
||||
.setSummaryText(getSummary())
|
||||
.setIconDrawable(mAppContext.getDrawable(R.drawable.ic_do_not_disturb_on_24dp))
|
||||
.setIconDrawable(mAppContext.getDrawable(
|
||||
com.android.settingslib.R.drawable.ic_do_not_disturb_on_24dp))
|
||||
.setViewType(ConditionContextualCardRenderer.VIEW_TYPE_HALF_WIDTH)
|
||||
.build();
|
||||
}
|
||||
|
||||
@@ -26,6 +26,8 @@ import androidx.annotation.Nullable;
|
||||
import androidx.preference.Preference;
|
||||
|
||||
import com.android.settingslib.core.AbstractPreferenceController;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
|
||||
import com.google.common.base.Preconditions;
|
||||
|
||||
|
||||
@@ -1,161 +0,0 @@
|
||||
/*
|
||||
* 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 static com.google.common.util.concurrent.Futures.immediateFuture;
|
||||
|
||||
import static java.util.Objects.requireNonNull;
|
||||
|
||||
import android.annotation.Nullable;
|
||||
import android.app.AutomaticZenRule;
|
||||
import android.content.Context;
|
||||
import android.graphics.drawable.AdaptiveIconDrawable;
|
||||
import android.graphics.drawable.ColorDrawable;
|
||||
import android.graphics.drawable.Drawable;
|
||||
import android.graphics.drawable.InsetDrawable;
|
||||
import android.service.notification.SystemZenRules;
|
||||
import android.text.TextUtils;
|
||||
import android.util.Log;
|
||||
import android.util.LruCache;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.VisibleForTesting;
|
||||
import androidx.appcompat.content.res.AppCompatResources;
|
||||
|
||||
import com.google.common.util.concurrent.FluentFuture;
|
||||
import com.google.common.util.concurrent.Futures;
|
||||
import com.google.common.util.concurrent.ListenableFuture;
|
||||
import com.google.common.util.concurrent.ListeningExecutorService;
|
||||
import com.google.common.util.concurrent.MoreExecutors;
|
||||
|
||||
import java.util.concurrent.ExecutorService;
|
||||
import java.util.concurrent.Executors;
|
||||
|
||||
class IconLoader {
|
||||
|
||||
private static final String TAG = "ZenIconLoader";
|
||||
|
||||
private static final Drawable MISSING = new ColorDrawable();
|
||||
|
||||
@Nullable // Until first usage
|
||||
private static IconLoader sInstance;
|
||||
|
||||
private final LruCache<String, Drawable> mCache;
|
||||
private final ListeningExecutorService mBackgroundExecutor;
|
||||
|
||||
static IconLoader getInstance() {
|
||||
if (sInstance == null) {
|
||||
sInstance = new IconLoader();
|
||||
}
|
||||
return sInstance;
|
||||
}
|
||||
|
||||
private IconLoader() {
|
||||
this(Executors.newFixedThreadPool(4));
|
||||
}
|
||||
|
||||
@VisibleForTesting
|
||||
IconLoader(ExecutorService backgroundExecutor) {
|
||||
mCache = new LruCache<>(50);
|
||||
mBackgroundExecutor =
|
||||
MoreExecutors.listeningDecorator(backgroundExecutor);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
ListenableFuture<Drawable> getIcon(Context context, @NonNull AutomaticZenRule rule) {
|
||||
if (rule.getIconResId() == 0) {
|
||||
return Futures.immediateFuture(getFallbackIcon(context, rule.getType()));
|
||||
}
|
||||
|
||||
return FluentFuture.from(loadIcon(context, rule.getPackageName(), rule.getIconResId()))
|
||||
.transform(icon ->
|
||||
icon != null ? icon : getFallbackIcon(context, rule.getType()),
|
||||
MoreExecutors.directExecutor());
|
||||
}
|
||||
|
||||
@NonNull
|
||||
private ListenableFuture</* @Nullable */ Drawable> loadIcon(Context context, String pkg,
|
||||
int iconResId) {
|
||||
String cacheKey = pkg + ":" + iconResId;
|
||||
synchronized (mCache) {
|
||||
Drawable cachedValue = mCache.get(cacheKey);
|
||||
if (cachedValue != null) {
|
||||
return immediateFuture(cachedValue != MISSING ? cachedValue : null);
|
||||
}
|
||||
}
|
||||
|
||||
return FluentFuture.from(mBackgroundExecutor.submit(() -> {
|
||||
if (TextUtils.isEmpty(pkg) || SystemZenRules.PACKAGE_ANDROID.equals(pkg)) {
|
||||
return context.getDrawable(iconResId);
|
||||
} else {
|
||||
Context appContext = context.createPackageContext(pkg, 0);
|
||||
Drawable appDrawable = AppCompatResources.getDrawable(appContext, iconResId);
|
||||
return getMonochromeIconIfPresent(appDrawable);
|
||||
}
|
||||
})).catching(Exception.class, ex -> {
|
||||
// If we cannot resolve the icon, then store MISSING in the cache below, so
|
||||
// we don't try again.
|
||||
Log.e(TAG, "Error while loading icon " + cacheKey, ex);
|
||||
return null;
|
||||
}, MoreExecutors.directExecutor()).transform(drawable -> {
|
||||
synchronized (mCache) {
|
||||
mCache.put(cacheKey, drawable != null ? drawable : MISSING);
|
||||
}
|
||||
return drawable;
|
||||
}, MoreExecutors.directExecutor());
|
||||
}
|
||||
|
||||
private static Drawable getFallbackIcon(Context context, int ruleType) {
|
||||
int iconResIdFromType = switch (ruleType) {
|
||||
case AutomaticZenRule.TYPE_UNKNOWN ->
|
||||
com.android.internal.R.drawable.ic_zen_mode_type_unknown;
|
||||
case AutomaticZenRule.TYPE_OTHER ->
|
||||
com.android.internal.R.drawable.ic_zen_mode_type_other;
|
||||
case AutomaticZenRule.TYPE_SCHEDULE_TIME ->
|
||||
com.android.internal.R.drawable.ic_zen_mode_type_schedule_time;
|
||||
case AutomaticZenRule.TYPE_SCHEDULE_CALENDAR ->
|
||||
com.android.internal.R.drawable.ic_zen_mode_type_schedule_calendar;
|
||||
case AutomaticZenRule.TYPE_BEDTIME ->
|
||||
com.android.internal.R.drawable.ic_zen_mode_type_bedtime;
|
||||
case AutomaticZenRule.TYPE_DRIVING ->
|
||||
com.android.internal.R.drawable.ic_zen_mode_type_driving;
|
||||
case AutomaticZenRule.TYPE_IMMERSIVE ->
|
||||
com.android.internal.R.drawable.ic_zen_mode_type_immersive;
|
||||
case AutomaticZenRule.TYPE_THEATER ->
|
||||
com.android.internal.R.drawable.ic_zen_mode_type_theater;
|
||||
case AutomaticZenRule.TYPE_MANAGED ->
|
||||
com.android.internal.R.drawable.ic_zen_mode_type_managed;
|
||||
default ->
|
||||
com.android.internal.R.drawable.ic_zen_mode_type_unknown;
|
||||
};
|
||||
return requireNonNull(context.getDrawable(iconResIdFromType));
|
||||
}
|
||||
|
||||
private static Drawable getMonochromeIconIfPresent(Drawable icon) {
|
||||
// For created rules, the app should've provided a monochrome Drawable. However, implicit
|
||||
// rules have the app's icon, which is not -- but might have a monochrome layer. Thus
|
||||
// we choose it, if present.
|
||||
if (icon instanceof AdaptiveIconDrawable adaptiveIcon) {
|
||||
if (adaptiveIcon.getMonochrome() != null) {
|
||||
// Wrap with negative inset => scale icon (inspired from BaseIconFactory)
|
||||
return new InsetDrawable(adaptiveIcon.getMonochrome(),
|
||||
-2.0f * AdaptiveIconDrawable.getExtraInsetFraction());
|
||||
}
|
||||
}
|
||||
return icon;
|
||||
}
|
||||
}
|
||||
@@ -26,6 +26,8 @@ import androidx.preference.Preference;
|
||||
import androidx.preference.TwoStatePreference;
|
||||
|
||||
import com.android.settings.R;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
|
||||
class InterruptionFilterPreferenceController extends AbstractZenModePreferenceController
|
||||
implements Preference.OnPreferenceChangeListener {
|
||||
|
||||
@@ -1,257 +0,0 @@
|
||||
/*
|
||||
* 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 static android.app.NotificationManager.INTERRUPTION_FILTER_ALL;
|
||||
import static android.app.NotificationManager.INTERRUPTION_FILTER_PRIORITY;
|
||||
import static android.service.notification.SystemZenRules.getTriggerDescriptionForScheduleEvent;
|
||||
import static android.service.notification.SystemZenRules.getTriggerDescriptionForScheduleTime;
|
||||
import static android.service.notification.ZenModeConfig.tryParseEventConditionId;
|
||||
import static android.service.notification.ZenModeConfig.tryParseScheduleConditionId;
|
||||
|
||||
import static com.google.common.base.Preconditions.checkState;
|
||||
|
||||
import static java.util.Objects.requireNonNull;
|
||||
|
||||
import android.annotation.SuppressLint;
|
||||
import android.app.AutomaticZenRule;
|
||||
import android.app.NotificationManager;
|
||||
import android.content.Context;
|
||||
import android.graphics.drawable.Drawable;
|
||||
import android.net.Uri;
|
||||
import android.service.notification.SystemZenRules;
|
||||
import android.service.notification.ZenDeviceEffects;
|
||||
import android.service.notification.ZenModeConfig;
|
||||
import android.service.notification.ZenPolicy;
|
||||
import android.util.Log;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
|
||||
import com.android.settings.R;
|
||||
|
||||
import com.google.common.util.concurrent.Futures;
|
||||
import com.google.common.util.concurrent.ListenableFuture;
|
||||
|
||||
import java.util.Objects;
|
||||
|
||||
/**
|
||||
* Represents either an {@link AutomaticZenRule} or the manual DND rule in a unified way.
|
||||
*
|
||||
* <p>It also adapts other rule features that we don't want to expose in the UI, such as
|
||||
* interruption filters other than {@code PRIORITY}, rules without specific icons, etc.
|
||||
*/
|
||||
class ZenMode {
|
||||
|
||||
private static final String TAG = "ZenMode";
|
||||
|
||||
static final String MANUAL_DND_MODE_ID = "manual_dnd";
|
||||
|
||||
// Must match com.android.server.notification.ZenModeHelper#applyCustomPolicy.
|
||||
private static final ZenPolicy POLICY_INTERRUPTION_FILTER_ALARMS =
|
||||
new ZenPolicy.Builder()
|
||||
.disallowAllSounds()
|
||||
.allowAlarms(true)
|
||||
.allowMedia(true)
|
||||
.allowPriorityChannels(false)
|
||||
.build();
|
||||
|
||||
// Must match com.android.server.notification.ZenModeHelper#applyCustomPolicy.
|
||||
private static final ZenPolicy POLICY_INTERRUPTION_FILTER_NONE =
|
||||
new ZenPolicy.Builder()
|
||||
.disallowAllSounds()
|
||||
.hideAllVisualEffects()
|
||||
.allowPriorityChannels(false)
|
||||
.build();
|
||||
|
||||
private final String mId;
|
||||
private AutomaticZenRule mRule;
|
||||
private final boolean mIsActive;
|
||||
private final boolean mIsManualDnd;
|
||||
|
||||
ZenMode(String id, AutomaticZenRule rule, boolean isActive) {
|
||||
this(id, rule, isActive, false);
|
||||
}
|
||||
|
||||
private ZenMode(String id, AutomaticZenRule rule, boolean isActive, boolean isManualDnd) {
|
||||
mId = id;
|
||||
mRule = rule;
|
||||
mIsActive = isActive;
|
||||
mIsManualDnd = isManualDnd;
|
||||
}
|
||||
|
||||
static ZenMode manualDndMode(AutomaticZenRule manualRule, boolean isActive) {
|
||||
return new ZenMode(MANUAL_DND_MODE_ID, manualRule, isActive, true);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public String getId() {
|
||||
return mId;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public AutomaticZenRule getRule() {
|
||||
return mRule;
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public ListenableFuture<Drawable> getIcon(@NonNull Context context,
|
||||
@NonNull IconLoader iconLoader) {
|
||||
if (mIsManualDnd) {
|
||||
return Futures.immediateFuture(requireNonNull(
|
||||
context.getDrawable(R.drawable.ic_do_not_disturb_on_24dp)));
|
||||
}
|
||||
|
||||
return iconLoader.getIcon(context, mRule);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public ZenPolicy getPolicy() {
|
||||
switch (mRule.getInterruptionFilter()) {
|
||||
case INTERRUPTION_FILTER_PRIORITY:
|
||||
case NotificationManager.INTERRUPTION_FILTER_ALL:
|
||||
return requireNonNull(mRule.getZenPolicy());
|
||||
|
||||
case NotificationManager.INTERRUPTION_FILTER_ALARMS:
|
||||
return POLICY_INTERRUPTION_FILTER_ALARMS;
|
||||
|
||||
case NotificationManager.INTERRUPTION_FILTER_NONE:
|
||||
return POLICY_INTERRUPTION_FILTER_NONE;
|
||||
|
||||
case NotificationManager.INTERRUPTION_FILTER_UNKNOWN:
|
||||
default:
|
||||
Log.wtf(TAG, "Rule " + mId + " with unexpected interruptionFilter "
|
||||
+ mRule.getInterruptionFilter());
|
||||
return requireNonNull(mRule.getZenPolicy());
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates the {@link ZenPolicy} of the associated {@link AutomaticZenRule} based on the
|
||||
* supplied policy. In some cases this involves conversions, so that the following call
|
||||
* to {@link #getPolicy} might return a different policy from the one supplied here.
|
||||
*/
|
||||
@SuppressLint("WrongConstant")
|
||||
public void setPolicy(@NonNull ZenPolicy policy) {
|
||||
ZenPolicy currentPolicy = getPolicy();
|
||||
if (currentPolicy.equals(policy)) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (mRule.getInterruptionFilter() == INTERRUPTION_FILTER_ALL) {
|
||||
Log.wtf(TAG, "Able to change policy without filtering being enabled");
|
||||
}
|
||||
|
||||
// If policy is customized from any of the "special" ones, make the rule PRIORITY.
|
||||
if (mRule.getInterruptionFilter() != INTERRUPTION_FILTER_PRIORITY) {
|
||||
mRule.setInterruptionFilter(INTERRUPTION_FILTER_PRIORITY);
|
||||
}
|
||||
mRule.setZenPolicy(policy);
|
||||
}
|
||||
|
||||
@NonNull
|
||||
public ZenDeviceEffects getDeviceEffects() {
|
||||
return mRule.getDeviceEffects() != null
|
||||
? mRule.getDeviceEffects()
|
||||
: new ZenDeviceEffects.Builder().build();
|
||||
}
|
||||
|
||||
public void setCustomModeConditionId(Context context, Uri conditionId) {
|
||||
checkState(SystemZenRules.PACKAGE_ANDROID.equals(mRule.getPackageName()),
|
||||
"Trying to change condition of non-system-owned rule %s (to %s)",
|
||||
mRule, conditionId);
|
||||
|
||||
Uri oldCondition = mRule.getConditionId();
|
||||
mRule.setConditionId(conditionId);
|
||||
|
||||
ZenModeConfig.ScheduleInfo scheduleInfo = tryParseScheduleConditionId(conditionId);
|
||||
if (scheduleInfo != null) {
|
||||
mRule.setType(AutomaticZenRule.TYPE_SCHEDULE_TIME);
|
||||
mRule.setOwner(ZenModeConfig.getScheduleConditionProvider());
|
||||
mRule.setTriggerDescription(
|
||||
getTriggerDescriptionForScheduleTime(context, scheduleInfo));
|
||||
return;
|
||||
}
|
||||
|
||||
ZenModeConfig.EventInfo eventInfo = tryParseEventConditionId(conditionId);
|
||||
if (eventInfo != null) {
|
||||
mRule.setType(AutomaticZenRule.TYPE_SCHEDULE_CALENDAR);
|
||||
mRule.setOwner(ZenModeConfig.getEventConditionProvider());
|
||||
mRule.setTriggerDescription(getTriggerDescriptionForScheduleEvent(context, eventInfo));
|
||||
return;
|
||||
}
|
||||
|
||||
if (ZenModeConfig.isValidCustomManualConditionId(conditionId)) {
|
||||
mRule.setType(AutomaticZenRule.TYPE_OTHER);
|
||||
mRule.setOwner(ZenModeConfig.getCustomManualConditionProvider());
|
||||
mRule.setTriggerDescription("");
|
||||
return;
|
||||
}
|
||||
|
||||
Log.wtf(TAG, String.format(
|
||||
"Changed condition of rule %s (%s -> %s) but cannot recognize which kind of "
|
||||
+ "condition it was!",
|
||||
mRule, oldCondition, conditionId));
|
||||
}
|
||||
|
||||
public boolean canEditName() {
|
||||
return !isManualDnd();
|
||||
}
|
||||
|
||||
public boolean canEditIcon() {
|
||||
return !isManualDnd();
|
||||
}
|
||||
|
||||
public boolean canBeDeleted() {
|
||||
return !mIsManualDnd;
|
||||
}
|
||||
|
||||
public boolean isManualDnd() {
|
||||
return mIsManualDnd;
|
||||
}
|
||||
|
||||
public boolean isActive() {
|
||||
return mIsActive;
|
||||
}
|
||||
|
||||
public boolean isSystemOwned() {
|
||||
return SystemZenRules.PACKAGE_ANDROID.equals(mRule.getPackageName());
|
||||
}
|
||||
|
||||
@AutomaticZenRule.Type
|
||||
public int getType() {
|
||||
return mRule.getType();
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals(@Nullable Object obj) {
|
||||
return obj instanceof ZenMode other
|
||||
&& mId.equals(other.mId)
|
||||
&& mRule.equals(other.mRule)
|
||||
&& mIsActive == other.mIsActive;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode() {
|
||||
return Objects.hash(mId, mRule, mIsActive);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString() {
|
||||
return mId + "(" + (mIsActive ? "active" : "inactive") + ") -> " + mRule;
|
||||
}
|
||||
}
|
||||
@@ -27,6 +27,8 @@ import androidx.preference.Preference;
|
||||
|
||||
import com.android.settings.R;
|
||||
import com.android.settings.core.SubSettingLauncher;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
import com.android.settingslib.widget.ActionButtonsPreference;
|
||||
|
||||
class ZenModeActionsPreferenceController extends AbstractZenModePreferenceController {
|
||||
|
||||
@@ -31,6 +31,8 @@ import androidx.preference.Preference;
|
||||
|
||||
import com.android.settings.core.SubSettingLauncher;
|
||||
import com.android.settingslib.applications.ApplicationsState;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.HashMap;
|
||||
@@ -128,11 +130,13 @@ class ZenModeAppsLinkPreferenceController extends AbstractZenModePreferenceContr
|
||||
return appsBypassingDnd;
|
||||
}
|
||||
|
||||
@VisibleForTesting final ApplicationsState.Callbacks mAppSessionCallbacks =
|
||||
@VisibleForTesting
|
||||
final ApplicationsState.Callbacks mAppSessionCallbacks =
|
||||
new ApplicationsState.Callbacks() {
|
||||
|
||||
@Override
|
||||
public void onRunningStateChanged(boolean running) { }
|
||||
public void onRunningStateChanged(boolean running) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPackageListChanged() {
|
||||
@@ -145,16 +149,20 @@ class ZenModeAppsLinkPreferenceController extends AbstractZenModePreferenceContr
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPackageIconChanged() { }
|
||||
public void onPackageIconChanged() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onPackageSizeChanged(String packageName) { }
|
||||
public void onPackageSizeChanged(String packageName) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onAllSizesComputed() { }
|
||||
public void onAllSizesComputed() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onLauncherInfoChanged() { }
|
||||
public void onLauncherInfoChanged() {
|
||||
}
|
||||
|
||||
@Override
|
||||
public void onLoadEntriesCompleted() {
|
||||
|
||||
@@ -31,6 +31,8 @@ import androidx.preference.PreferenceScreen;
|
||||
import androidx.preference.TwoStatePreference;
|
||||
|
||||
import com.android.settings.core.SubSettingLauncher;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
import com.android.settingslib.widget.SelectorWithWidgetPreference;
|
||||
|
||||
public class ZenModeAppsPreferenceController extends
|
||||
|
||||
@@ -23,6 +23,8 @@ import android.widget.Button;
|
||||
import androidx.preference.Preference;
|
||||
|
||||
import com.android.settings.R;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
import com.android.settingslib.widget.LayoutPreference;
|
||||
|
||||
public class ZenModeButtonPreferenceController extends AbstractZenModePreferenceController {
|
||||
|
||||
@@ -25,6 +25,8 @@ import androidx.annotation.NonNull;
|
||||
import androidx.preference.Preference;
|
||||
|
||||
import com.android.settings.core.SubSettingLauncher;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
|
||||
class ZenModeCallsLinkPreferenceController extends AbstractZenModePreferenceController {
|
||||
|
||||
|
||||
@@ -23,6 +23,9 @@ import androidx.annotation.NonNull;
|
||||
import androidx.preference.Preference;
|
||||
import androidx.preference.TwoStatePreference;
|
||||
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
|
||||
public class ZenModeDisplayEffectPreferenceController extends AbstractZenModePreferenceController
|
||||
implements Preference.OnPreferenceChangeListener {
|
||||
|
||||
|
||||
@@ -25,6 +25,8 @@ import androidx.annotation.NonNull;
|
||||
import androidx.preference.Preference;
|
||||
|
||||
import com.android.settings.core.SubSettingLauncher;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
|
||||
class ZenModeDisplayLinkPreferenceController extends AbstractZenModePreferenceController {
|
||||
|
||||
|
||||
@@ -23,6 +23,9 @@ import androidx.annotation.NonNull;
|
||||
import androidx.preference.Preference;
|
||||
import androidx.preference.TwoStatePreference;
|
||||
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
|
||||
/**
|
||||
* Preference controller controlling whether a time schedule-based mode ends at the next alarm.
|
||||
*/
|
||||
|
||||
@@ -24,6 +24,7 @@ import android.content.Context;
|
||||
import com.android.settings.R;
|
||||
import com.android.settingslib.applications.ApplicationsState;
|
||||
import com.android.settingslib.core.AbstractPreferenceController;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
@@ -31,6 +31,7 @@ import androidx.preference.PreferenceScreen;
|
||||
|
||||
import com.android.settings.R;
|
||||
import com.android.settingslib.core.AbstractPreferenceController;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
|
||||
@@ -25,6 +25,9 @@ import androidx.preference.Preference;
|
||||
import com.android.settings.R;
|
||||
import com.android.settings.dashboard.DashboardFragment;
|
||||
import com.android.settings.widget.EntityHeaderController;
|
||||
import com.android.settingslib.notification.modes.ZenIconLoader;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
import com.android.settingslib.widget.LayoutPreference;
|
||||
|
||||
class ZenModeHeaderController extends AbstractZenModePreferenceController {
|
||||
@@ -62,7 +65,7 @@ class ZenModeHeaderController extends AbstractZenModePreferenceController {
|
||||
}
|
||||
|
||||
FutureUtil.whenDone(
|
||||
zenMode.getIcon(mContext, IconLoader.getInstance()),
|
||||
zenMode.getIcon(mContext, ZenIconLoader.getInstance()),
|
||||
icon -> mHeaderController.setIcon(IconUtil.applyTint(mContext, icon))
|
||||
.done(/* rebindActions= */ false),
|
||||
mContext.getMainExecutor());
|
||||
|
||||
@@ -25,6 +25,9 @@ import androidx.preference.Preference;
|
||||
import com.android.settings.R;
|
||||
import com.android.settings.dashboard.DashboardFragment;
|
||||
import com.android.settings.widget.EntityHeaderController;
|
||||
import com.android.settingslib.notification.modes.ZenIconLoader;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
import com.android.settingslib.widget.LayoutPreference;
|
||||
|
||||
class ZenModeIconPickerIconPreferenceController extends AbstractZenModePreferenceController {
|
||||
@@ -51,7 +54,7 @@ class ZenModeIconPickerIconPreferenceController extends AbstractZenModePreferenc
|
||||
}
|
||||
|
||||
FutureUtil.whenDone(
|
||||
zenMode.getIcon(mContext, IconLoader.getInstance()),
|
||||
zenMode.getIcon(mContext, ZenIconLoader.getInstance()),
|
||||
icon -> mHeaderController.setIcon(IconUtil.applyTint(mContext, icon))
|
||||
.done(/* rebindActions= */ false),
|
||||
mContext.getMainExecutor());
|
||||
|
||||
@@ -33,6 +33,8 @@ import androidx.recyclerview.widget.RecyclerView;
|
||||
|
||||
import com.android.settings.R;
|
||||
import com.android.settings.dashboard.DashboardFragment;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
import com.android.settingslib.widget.LayoutPreference;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
|
||||
@@ -25,6 +25,8 @@ import androidx.annotation.NonNull;
|
||||
import androidx.preference.Preference;
|
||||
|
||||
import com.android.settings.core.SubSettingLauncher;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
|
||||
class ZenModeMessagesLinkPreferenceController extends AbstractZenModePreferenceController {
|
||||
private final ZenModeSummaryHelper mSummaryHelper;
|
||||
|
||||
@@ -26,6 +26,8 @@ import androidx.annotation.NonNull;
|
||||
import androidx.preference.Preference;
|
||||
|
||||
import com.android.settings.core.SubSettingLauncher;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
|
||||
class ZenModeNotifVisLinkPreferenceController extends AbstractZenModePreferenceController {
|
||||
|
||||
|
||||
@@ -21,19 +21,21 @@ import android.service.notification.ZenPolicy;
|
||||
|
||||
import androidx.annotation.NonNull;
|
||||
import androidx.annotation.VisibleForTesting;
|
||||
import androidx.preference.CheckBoxPreference;
|
||||
import androidx.preference.Preference;
|
||||
import androidx.preference.TwoStatePreference;
|
||||
|
||||
import com.android.settings.widget.DisabledCheckBoxPreference;
|
||||
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;
|
||||
@VisibleForTesting
|
||||
protected @ZenPolicy.VisualEffect int mEffect;
|
||||
|
||||
// if any of these effects are suppressed, this effect must be too
|
||||
@VisibleForTesting protected @ZenPolicy.VisualEffect int[] mParentSuppressedEffects;
|
||||
@VisibleForTesting
|
||||
protected @ZenPolicy.VisualEffect int[] mParentSuppressedEffects;
|
||||
|
||||
public ZenModeNotifVisPreferenceController(Context context, String key,
|
||||
@ZenPolicy.VisualEffect int visualEffect,
|
||||
|
||||
@@ -26,6 +26,8 @@ import androidx.annotation.NonNull;
|
||||
import androidx.preference.Preference;
|
||||
|
||||
import com.android.settings.core.SubSettingLauncher;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
|
||||
/**
|
||||
* Preference with a link and summary about what other sounds can break through the mode
|
||||
|
||||
@@ -28,6 +28,9 @@ import androidx.annotation.NonNull;
|
||||
import androidx.preference.Preference;
|
||||
import androidx.preference.TwoStatePreference;
|
||||
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
|
||||
class ZenModeOtherPreferenceController extends AbstractZenModePreferenceController
|
||||
implements Preference.OnPreferenceChangeListener {
|
||||
|
||||
|
||||
@@ -26,6 +26,8 @@ import androidx.annotation.NonNull;
|
||||
import androidx.preference.Preference;
|
||||
|
||||
import com.android.settings.core.SubSettingLauncher;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
|
||||
/**
|
||||
* Preference with a link and summary about what calls and messages can break through the mode
|
||||
|
||||
@@ -46,6 +46,8 @@ import androidx.preference.PreferenceScreen;
|
||||
import com.android.settings.R;
|
||||
import com.android.settings.core.SubSettingLauncher;
|
||||
import com.android.settings.notification.app.ConversationListSettings;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
import com.android.settingslib.widget.SelectorWithWidgetPreference;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
@@ -26,6 +26,8 @@ import androidx.preference.Preference;
|
||||
import androidx.preference.TwoStatePreference;
|
||||
|
||||
import com.android.settings.R;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
|
||||
class ZenModeRepeatCallersPreferenceController extends AbstractZenModePreferenceController
|
||||
implements Preference.OnPreferenceChangeListener {
|
||||
|
||||
@@ -31,6 +31,8 @@ import androidx.preference.PreferenceCategory;
|
||||
|
||||
import com.android.internal.annotations.VisibleForTesting;
|
||||
import com.android.settings.R;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
|
||||
@@ -31,6 +31,8 @@ import androidx.fragment.app.Fragment;
|
||||
import androidx.preference.Preference;
|
||||
|
||||
import com.android.settings.R;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
import com.android.settingslib.widget.LayoutPreference;
|
||||
|
||||
import java.text.SimpleDateFormat;
|
||||
|
||||
@@ -29,6 +29,8 @@ import androidx.preference.PreferenceCategory;
|
||||
import com.android.settings.R;
|
||||
import com.android.settings.dashboard.DashboardFragment;
|
||||
import com.android.settingslib.PrimarySwitchPreference;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
|
||||
/**
|
||||
* Preference controller for the link to an individual mode's configuration page.
|
||||
|
||||
@@ -48,6 +48,7 @@ import androidx.annotation.NonNull;
|
||||
import androidx.annotation.Nullable;
|
||||
|
||||
import com.android.settings.R;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
@@ -193,7 +194,7 @@ class ZenModeSummaryHelper {
|
||||
enabledEffects.add(getBlockedEffectsSummary(zenMode));
|
||||
isFirst = false;
|
||||
}
|
||||
ZenDeviceEffects currEffects = zenMode.getRule().getDeviceEffects();
|
||||
ZenDeviceEffects currEffects = zenMode.getRule().getDeviceEffects();
|
||||
if (currEffects != null) {
|
||||
if (currEffects.shouldDisplayGrayscale()) {
|
||||
if (isFirst) {
|
||||
|
||||
@@ -1,207 +0,0 @@
|
||||
/*
|
||||
* 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.annotation.Nullable;
|
||||
import android.app.ActivityManager;
|
||||
import android.app.AutomaticZenRule;
|
||||
import android.app.NotificationManager;
|
||||
import android.content.Context;
|
||||
import android.net.Uri;
|
||||
import android.provider.Settings;
|
||||
import android.service.notification.Condition;
|
||||
import android.service.notification.ZenModeConfig;
|
||||
import android.util.Log;
|
||||
|
||||
import com.android.settings.R;
|
||||
|
||||
import java.time.Duration;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
/**
|
||||
* Class used for Settings-NMS interactions related to Mode management.
|
||||
*
|
||||
* <p>This class converts {@link AutomaticZenRule} instances, as well as the manual zen mode,
|
||||
* into the unified {@link ZenMode} format.
|
||||
*/
|
||||
class ZenModesBackend {
|
||||
|
||||
private static final String TAG = "ZenModeBackend";
|
||||
|
||||
@Nullable // Until first usage
|
||||
private static ZenModesBackend sInstance;
|
||||
|
||||
private final NotificationManager mNotificationManager;
|
||||
|
||||
private final Context mContext;
|
||||
|
||||
static ZenModesBackend getInstance(Context context) {
|
||||
if (sInstance == null) {
|
||||
sInstance = new ZenModesBackend(context.getApplicationContext());
|
||||
}
|
||||
return sInstance;
|
||||
}
|
||||
|
||||
ZenModesBackend(Context context) {
|
||||
mContext = context;
|
||||
mNotificationManager = context.getSystemService(NotificationManager.class);
|
||||
}
|
||||
|
||||
List<ZenMode> getModes() {
|
||||
ArrayList<ZenMode> modes = new ArrayList<>();
|
||||
ZenModeConfig currentConfig = mNotificationManager.getZenModeConfig();
|
||||
modes.add(getManualDndMode(currentConfig));
|
||||
|
||||
Map<String, AutomaticZenRule> zenRules = mNotificationManager.getAutomaticZenRules();
|
||||
for (Map.Entry<String, AutomaticZenRule> zenRuleEntry : zenRules.entrySet()) {
|
||||
String ruleId = zenRuleEntry.getKey();
|
||||
modes.add(new ZenMode(ruleId, zenRuleEntry.getValue(),
|
||||
isRuleActive(ruleId, currentConfig)));
|
||||
}
|
||||
|
||||
modes.sort((l, r) -> {
|
||||
if (l.isManualDnd()) {
|
||||
return -1;
|
||||
} else if (r.isManualDnd()) {
|
||||
return 1;
|
||||
}
|
||||
return l.getRule().getName().compareTo(r.getRule().getName());
|
||||
});
|
||||
|
||||
return modes;
|
||||
}
|
||||
|
||||
@Nullable
|
||||
ZenMode getMode(String id) {
|
||||
ZenModeConfig currentConfig = mNotificationManager.getZenModeConfig();
|
||||
if (ZenMode.MANUAL_DND_MODE_ID.equals(id)) {
|
||||
return getManualDndMode(currentConfig);
|
||||
} else {
|
||||
AutomaticZenRule rule = mNotificationManager.getAutomaticZenRule(id);
|
||||
if (rule == null) {
|
||||
return null;
|
||||
}
|
||||
return new ZenMode(id, rule, isRuleActive(id, currentConfig));
|
||||
}
|
||||
}
|
||||
|
||||
private ZenMode getManualDndMode(ZenModeConfig config) {
|
||||
ZenModeConfig.ZenRule manualRule = config.manualRule;
|
||||
// TODO: b/333682392 - Replace with final strings for name & trigger description
|
||||
AutomaticZenRule manualDndRule = new AutomaticZenRule.Builder(
|
||||
mContext.getString(R.string.zen_mode_settings_title), manualRule.conditionId)
|
||||
.setType(manualRule.type)
|
||||
.setZenPolicy(manualRule.zenPolicy)
|
||||
.setDeviceEffects(manualRule.zenDeviceEffects)
|
||||
.setManualInvocationAllowed(manualRule.allowManualInvocation)
|
||||
.setConfigurationActivity(null) // No further settings
|
||||
.setInterruptionFilter(NotificationManager.INTERRUPTION_FILTER_PRIORITY)
|
||||
.build();
|
||||
|
||||
return ZenMode.manualDndMode(manualDndRule, config != null && config.isManualActive());
|
||||
}
|
||||
|
||||
private static boolean isRuleActive(String id, ZenModeConfig config) {
|
||||
if (config == null) {
|
||||
// shouldn't happen if the config is coming from NM, but be safe
|
||||
return false;
|
||||
}
|
||||
ZenModeConfig.ZenRule configRule = config.automaticRules.get(id);
|
||||
return configRule != null && configRule.isAutomaticActive();
|
||||
}
|
||||
|
||||
void updateMode(ZenMode mode) {
|
||||
if (mode.isManualDnd()) {
|
||||
try {
|
||||
NotificationManager.Policy dndPolicy =
|
||||
new ZenModeConfig().toNotificationPolicy(mode.getPolicy());
|
||||
mNotificationManager.setNotificationPolicy(dndPolicy, /* fromUser= */ true);
|
||||
|
||||
mNotificationManager.setManualZenRuleDeviceEffects(
|
||||
mode.getRule().getDeviceEffects());
|
||||
} catch (Exception e) {
|
||||
Log.w(TAG, "Error updating manual mode", e);
|
||||
}
|
||||
} else {
|
||||
mNotificationManager.updateAutomaticZenRule(mode.getId(), mode.getRule(),
|
||||
/* fromUser= */ true);
|
||||
}
|
||||
}
|
||||
|
||||
void activateMode(ZenMode mode, @Nullable Duration forDuration) {
|
||||
if (mode.isManualDnd()) {
|
||||
Uri durationConditionId = null;
|
||||
if (forDuration != null) {
|
||||
durationConditionId = ZenModeConfig.toTimeCondition(mContext,
|
||||
(int) forDuration.toMinutes(), ActivityManager.getCurrentUser(), true).id;
|
||||
}
|
||||
mNotificationManager.setZenMode(Settings.Global.ZEN_MODE_IMPORTANT_INTERRUPTIONS,
|
||||
durationConditionId, TAG, /* fromUser= */ true);
|
||||
|
||||
} else {
|
||||
if (forDuration != null) {
|
||||
throw new IllegalArgumentException(
|
||||
"Only the manual DND mode can be activated for a specific duration");
|
||||
}
|
||||
mNotificationManager.setAutomaticZenRuleState(mode.getId(),
|
||||
new Condition(mode.getRule().getConditionId(), "", Condition.STATE_TRUE,
|
||||
Condition.SOURCE_USER_ACTION));
|
||||
}
|
||||
}
|
||||
|
||||
void deactivateMode(ZenMode mode) {
|
||||
if (mode.isManualDnd()) {
|
||||
// When calling with fromUser=true this will not snooze other modes.
|
||||
mNotificationManager.setZenMode(Settings.Global.ZEN_MODE_OFF, null, TAG,
|
||||
/* fromUser= */ true);
|
||||
} else {
|
||||
// TODO: b/333527800 - This should (potentially) snooze the rule if it was active.
|
||||
mNotificationManager.setAutomaticZenRuleState(mode.getId(),
|
||||
new Condition(mode.getRule().getConditionId(), "", Condition.STATE_FALSE,
|
||||
Condition.SOURCE_USER_ACTION));
|
||||
}
|
||||
}
|
||||
|
||||
void removeMode(ZenMode mode) {
|
||||
if (!mode.canBeDeleted()) {
|
||||
throw new IllegalArgumentException("Mode " + mode + " cannot be deleted!");
|
||||
}
|
||||
mNotificationManager.removeAutomaticZenRule(mode.getId(), /* fromUser= */ true);
|
||||
}
|
||||
|
||||
/**
|
||||
* Creates a new custom mode with the provided {@code name}. The mode will be "manual" (i.e.
|
||||
* not have a schedule), this can be later updated by the user in the mode settings page.
|
||||
*
|
||||
* @return the created mode. Only {@code null} if creation failed due to an internal error
|
||||
*/
|
||||
@Nullable
|
||||
ZenMode addCustomMode(String name) {
|
||||
AutomaticZenRule rule = new AutomaticZenRule.Builder(name,
|
||||
ZenModeConfig.toCustomManualConditionId())
|
||||
.setPackage(ZenModeConfig.getCustomManualConditionProvider().getPackageName())
|
||||
.setType(AutomaticZenRule.TYPE_OTHER)
|
||||
.setOwner(ZenModeConfig.getCustomManualConditionProvider())
|
||||
.setManualInvocationAllowed(true)
|
||||
.build();
|
||||
|
||||
String ruleId = mNotificationManager.addAutomaticZenRule(rule);
|
||||
return getMode(ruleId);
|
||||
}
|
||||
}
|
||||
@@ -27,6 +27,7 @@ import android.provider.Settings.Global;
|
||||
import android.util.Log;
|
||||
|
||||
import com.android.settings.dashboard.RestrictedDashboardFragment;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
|
||||
/**
|
||||
* Base class for all Settings pages controlling Modes behavior.
|
||||
|
||||
@@ -22,6 +22,8 @@ import androidx.preference.Preference;
|
||||
|
||||
import com.android.settings.utils.ZenServiceListing;
|
||||
import com.android.settingslib.core.AbstractPreferenceController;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
|
||||
import java.util.Random;
|
||||
|
||||
|
||||
@@ -29,6 +29,7 @@ import com.android.settings.search.BaseSearchIndexProvider;
|
||||
import com.android.settings.utils.ManagedServiceSettings;
|
||||
import com.android.settings.utils.ZenServiceListing;
|
||||
import com.android.settingslib.core.AbstractPreferenceController;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
import com.android.settingslib.search.SearchIndexable;
|
||||
|
||||
import com.google.common.collect.ImmutableList;
|
||||
|
||||
@@ -18,6 +18,8 @@ package com.android.settings.notification.modes;
|
||||
import android.content.Context;
|
||||
|
||||
import com.android.settingslib.RestrictedPreference;
|
||||
import com.android.settingslib.notification.modes.ZenIconLoader;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
|
||||
/**
|
||||
* Preference representing a single mode item on the modes aggregator page. Clicking on this
|
||||
@@ -46,7 +48,7 @@ class ZenModesListItemPreference extends RestrictedPreference {
|
||||
setIconSize(ICON_SIZE_SMALL);
|
||||
|
||||
FutureUtil.whenDone(
|
||||
mZenMode.getIcon(mContext, IconLoader.getInstance()),
|
||||
mZenMode.getIcon(mContext, ZenIconLoader.getInstance()),
|
||||
icon -> setIcon(IconUtil.applyTint(mContext, icon)),
|
||||
mContext.getMainExecutor());
|
||||
}
|
||||
|
||||
@@ -27,6 +27,8 @@ import androidx.preference.PreferenceCategory;
|
||||
|
||||
import com.android.settings.R;
|
||||
import com.android.settings.core.BasePreferenceController;
|
||||
import com.android.settingslib.notification.modes.ZenMode;
|
||||
import com.android.settingslib.notification.modes.ZenModesBackend;
|
||||
import com.android.settingslib.search.SearchIndexableRaw;
|
||||
|
||||
import java.util.HashMap;
|
||||
|
||||
@@ -116,7 +116,7 @@ public class ZenModeBackend {
|
||||
ActivityManager.getCurrentUser(), true).id;
|
||||
if (android.app.Flags.modesApi()) {
|
||||
mNotificationManager.setZenMode(Settings.Global.ZEN_MODE_IMPORTANT_INTERRUPTIONS,
|
||||
conditionId, TAG, /* fromUser= */ true);
|
||||
conditionId, TAG, /* fromUser= */ true);
|
||||
} else {
|
||||
mNotificationManager.setZenMode(Settings.Global.ZEN_MODE_IMPORTANT_INTERRUPTIONS,
|
||||
conditionId, TAG);
|
||||
@@ -241,12 +241,14 @@ public class ZenModeBackend {
|
||||
}
|
||||
|
||||
savePolicy(getNewDefaultPriorityCategories(allowSenders, category),
|
||||
priorityCallSenders, priorityMessagesSenders, mPolicy.suppressedVisualEffects,
|
||||
priorityCallSenders, priorityMessagesSenders, mPolicy.suppressedVisualEffects,
|
||||
mPolicy.priorityConversationSenders);
|
||||
|
||||
if (ZenModeSettingsBase.DEBUG) Log.d(TAG, "onPrefChange allow" +
|
||||
stringCategory + "=" + allowSenders + " allow" + stringCategory + "From="
|
||||
+ ZenModeConfig.sourceToString(allowSendersFrom));
|
||||
if (ZenModeSettingsBase.DEBUG) {
|
||||
Log.d(TAG, "onPrefChange allow"
|
||||
+ stringCategory + "=" + allowSenders + " allow" + stringCategory + "From="
|
||||
+ ZenModeConfig.sourceToString(allowSendersFrom));
|
||||
}
|
||||
}
|
||||
|
||||
protected void saveConversationSenders(int val) {
|
||||
@@ -280,7 +282,7 @@ public class ZenModeBackend {
|
||||
switch (contactType) {
|
||||
case ZenPolicy.PEOPLE_TYPE_ANYONE:
|
||||
return ZEN_MODE_FROM_ANYONE;
|
||||
case ZenPolicy.PEOPLE_TYPE_CONTACTS:
|
||||
case ZenPolicy.PEOPLE_TYPE_CONTACTS:
|
||||
return ZEN_MODE_FROM_CONTACTS;
|
||||
case ZenPolicy.PEOPLE_TYPE_STARRED:
|
||||
return ZEN_MODE_FROM_STARRED;
|
||||
@@ -308,7 +310,7 @@ public class ZenModeBackend {
|
||||
switch (setting) {
|
||||
case ZenPolicy.PEOPLE_TYPE_ANYONE:
|
||||
return NotificationManager.Policy.PRIORITY_SENDERS_ANY;
|
||||
case ZenPolicy.PEOPLE_TYPE_CONTACTS:
|
||||
case ZenPolicy.PEOPLE_TYPE_CONTACTS:
|
||||
return NotificationManager.Policy.PRIORITY_SENDERS_CONTACTS;
|
||||
case ZenPolicy.PEOPLE_TYPE_STARRED:
|
||||
return NotificationManager.Policy.PRIORITY_SENDERS_STARRED;
|
||||
@@ -321,7 +323,7 @@ public class ZenModeBackend {
|
||||
protected int getAlarmsTotalSilencePeopleSummary(int category) {
|
||||
if (category == NotificationManager.Policy.PRIORITY_CATEGORY_MESSAGES) {
|
||||
return R.string.zen_mode_none_messages;
|
||||
} else if (category == NotificationManager.Policy.PRIORITY_CATEGORY_CALLS){
|
||||
} else if (category == NotificationManager.Policy.PRIORITY_CATEGORY_CALLS) {
|
||||
return R.string.zen_mode_none_calls;
|
||||
} else if (category == NotificationManager.Policy.PRIORITY_CATEGORY_CONVERSATIONS) {
|
||||
return R.string.zen_mode_from_no_conversations;
|
||||
@@ -470,8 +472,8 @@ public class ZenModeBackend {
|
||||
if (cursor != null && cursor.moveToFirst()) {
|
||||
do {
|
||||
String contact = cursor.getString(0);
|
||||
starredContacts.add(contact != null ? contact :
|
||||
mContext.getString(R.string.zen_mode_starred_contacts_empty_name));
|
||||
int emptyNameId = R.string.zen_mode_starred_contacts_empty_name;
|
||||
starredContacts.add(contact != null ? contact : mContext.getString(emptyNameId));
|
||||
|
||||
} while (cursor.moveToNext());
|
||||
}
|
||||
|
||||
@@ -132,8 +132,8 @@ public class ZenModeSliceBuilder {
|
||||
final Uri contentUri = new Uri.Builder().appendPath(ZEN_MODE_SLICE_KEY).build();
|
||||
final String screenTitle = context.getText(R.string.zen_mode_settings_title).toString();
|
||||
return SliceBuilderUtils.buildSearchResultPageIntent(context,
|
||||
ZenModeSettings.class.getName(), ZEN_MODE_SLICE_KEY, screenTitle,
|
||||
SettingsEnums.NOTIFICATION_ZEN_MODE, R.string.menu_key_notifications)
|
||||
ZenModeSettings.class.getName(), ZEN_MODE_SLICE_KEY, screenTitle,
|
||||
SettingsEnums.NOTIFICATION_ZEN_MODE, R.string.menu_key_notifications)
|
||||
.setClassName(context.getPackageName(), SubSettings.class.getName())
|
||||
.setData(contentUri);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user