- Add link in DND Conversations Page to the overall conversations list Settings page - Add custom_rule xml pages for custom schedule rule settings for messages and calls (so the UI is the same as before the message/calls redesign) - Change app exceptions to display apps with subtext indicating which notitfication channels are allowed to bypass dnd (previously, would display each channel individually) - Add individual AppBypassDnd channel pages where users can decide which channels will bypass DND for an app on a single page (AppChannelsBypassingDndSettings) - Only remove dnd bypassing apps preferences from the preference list if the list changed, else just update the preference itself to avoid the list from flashing Test: make RunSettingsRoboTests7 Bug: 151845457 Change-Id: If12d8921e1405aefb1066acc2ef5c55d216fe47a
222 lines
8.5 KiB
Java
222 lines
8.5 KiB
Java
/*
|
|
* Copyright (C) 2020 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.zen;
|
|
|
|
import static com.android.settings.widget.RadioButtonPreferenceWithExtraWidget.EXTRA_WIDGET_VISIBILITY_GONE;
|
|
import static com.android.settings.widget.RadioButtonPreferenceWithExtraWidget.EXTRA_WIDGET_VISIBILITY_SETTING;
|
|
|
|
import android.app.NotificationManager;
|
|
import android.app.settings.SettingsEnums;
|
|
import android.content.Context;
|
|
import android.content.pm.ParceledListSlice;
|
|
import android.os.AsyncTask;
|
|
import android.service.notification.ConversationChannelWrapper;
|
|
import android.view.View;
|
|
|
|
import androidx.annotation.VisibleForTesting;
|
|
import androidx.preference.Preference;
|
|
import androidx.preference.PreferenceCategory;
|
|
import androidx.preference.PreferenceScreen;
|
|
|
|
import com.android.settings.R;
|
|
import com.android.settings.core.SubSettingLauncher;
|
|
import com.android.settings.notification.NotificationBackend;
|
|
import com.android.settings.notification.app.ConversationListSettings;
|
|
import com.android.settings.widget.RadioButtonPreferenceWithExtraWidget;
|
|
import com.android.settingslib.core.lifecycle.Lifecycle;
|
|
import com.android.settingslib.widget.RadioButtonPreference;
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.List;
|
|
|
|
/**
|
|
* Options to choose the priority conversations that are allowed to bypass DND.
|
|
*/
|
|
public class ZenModePriorityConversationsPreferenceController
|
|
extends AbstractZenModePreferenceController {
|
|
private static final int UNSET = -1;
|
|
@VisibleForTesting static final String KEY_ALL = "conversations_all";
|
|
@VisibleForTesting static final String KEY_IMPORTANT = "conversations_important";
|
|
@VisibleForTesting static final String KEY_NONE = "conversations_none";
|
|
|
|
private final NotificationBackend mNotificationBackend;
|
|
|
|
private int mNumImportantConversations = UNSET;
|
|
private int mNumConversations = UNSET;
|
|
private PreferenceCategory mPreferenceCategory;
|
|
private List<RadioButtonPreference> mRadioButtonPreferences = new ArrayList<>();
|
|
private Context mPreferenceScreenContext;
|
|
|
|
public ZenModePriorityConversationsPreferenceController(Context context, String key,
|
|
Lifecycle lifecycle, NotificationBackend notificationBackend) {
|
|
super(context, key, lifecycle);
|
|
mNotificationBackend = notificationBackend;
|
|
}
|
|
|
|
@Override
|
|
public void displayPreference(PreferenceScreen screen) {
|
|
mPreferenceScreenContext = screen.getContext();
|
|
mPreferenceCategory = screen.findPreference(getPreferenceKey());
|
|
if (mPreferenceCategory.findPreference(KEY_ALL) == null) {
|
|
makeRadioPreference(KEY_ALL, R.string.zen_mode_from_all_conversations);
|
|
makeRadioPreference(KEY_IMPORTANT, R.string.zen_mode_from_important_conversations);
|
|
makeRadioPreference(KEY_NONE, R.string.zen_mode_from_no_conversations);
|
|
updateChannelCounts();
|
|
}
|
|
|
|
super.displayPreference(screen);
|
|
}
|
|
|
|
@Override
|
|
public void onResume() {
|
|
super.onResume();
|
|
updateChannelCounts();
|
|
}
|
|
|
|
@Override
|
|
public boolean isAvailable() {
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public String getPreferenceKey() {
|
|
return KEY;
|
|
}
|
|
|
|
@Override
|
|
public void updateState(Preference preference) {
|
|
final int currSetting = mBackend.getPriorityConversationSenders();
|
|
|
|
for (RadioButtonPreference pref : mRadioButtonPreferences) {
|
|
pref.setChecked(keyToSetting(pref.getKey()) == currSetting);
|
|
pref.setSummary(getSummary(pref.getKey()));
|
|
}
|
|
}
|
|
|
|
private static int keyToSetting(String key) {
|
|
switch (key) {
|
|
case KEY_ALL:
|
|
return NotificationManager.Policy.CONVERSATION_SENDERS_ANYONE;
|
|
case KEY_IMPORTANT:
|
|
return NotificationManager.Policy.CONVERSATION_SENDERS_IMPORTANT;
|
|
default:
|
|
return NotificationManager.Policy.CONVERSATION_SENDERS_NONE;
|
|
}
|
|
}
|
|
|
|
private String getSummary(String key) {
|
|
int numConversations;
|
|
if (KEY_ALL.equals(key)) {
|
|
numConversations = mNumConversations;
|
|
} else if (KEY_IMPORTANT.equals(key)) {
|
|
numConversations = mNumImportantConversations;
|
|
} else {
|
|
return null;
|
|
}
|
|
|
|
if (numConversations == UNSET) {
|
|
return null;
|
|
} else if (numConversations == 0) {
|
|
return mContext.getResources().getString(
|
|
R.string.zen_mode_conversations_count_none);
|
|
} else {
|
|
return mContext.getResources().getQuantityString(
|
|
R.plurals.zen_mode_conversations_count, numConversations, numConversations);
|
|
}
|
|
}
|
|
|
|
private void updateChannelCounts() {
|
|
// Load conversations
|
|
new AsyncTask<Void, Void, Void>() {
|
|
@Override
|
|
protected Void doInBackground(Void... unused) {
|
|
ParceledListSlice<ConversationChannelWrapper> allConversations =
|
|
mNotificationBackend.getConversations(false);
|
|
int numConversations = 0;
|
|
if (allConversations != null) {
|
|
for (ConversationChannelWrapper conversation : allConversations.getList()) {
|
|
if (!conversation.getNotificationChannel().isDemoted()) {
|
|
numConversations++;
|
|
}
|
|
}
|
|
}
|
|
mNumConversations = numConversations;
|
|
|
|
ParceledListSlice<ConversationChannelWrapper> impConversations =
|
|
mNotificationBackend.getConversations(true);
|
|
int numImportantConversations = 0;
|
|
if (impConversations != null) {
|
|
for (ConversationChannelWrapper conversation : impConversations.getList()) {
|
|
if (!conversation.getNotificationChannel().isDemoted()) {
|
|
numImportantConversations++;
|
|
}
|
|
}
|
|
}
|
|
mNumImportantConversations = numImportantConversations;
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
protected void onPostExecute(Void unused) {
|
|
if (mContext == null) {
|
|
return;
|
|
}
|
|
updateState(mPreferenceCategory);
|
|
}
|
|
}.execute();
|
|
}
|
|
|
|
private RadioButtonPreference makeRadioPreference(String key, int titleId) {
|
|
RadioButtonPreferenceWithExtraWidget pref =
|
|
new RadioButtonPreferenceWithExtraWidget(mPreferenceCategory.getContext());
|
|
if (KEY_ALL.equals(key) || KEY_IMPORTANT.equals(key)) {
|
|
pref.setExtraWidgetOnClickListener(mConversationSettingsWidgetClickListener);
|
|
pref.setExtraWidgetVisibility(EXTRA_WIDGET_VISIBILITY_SETTING);
|
|
} else {
|
|
pref.setExtraWidgetVisibility(EXTRA_WIDGET_VISIBILITY_GONE);
|
|
}
|
|
pref.setKey(key);
|
|
pref.setTitle(titleId);
|
|
pref.setOnClickListener(mRadioButtonClickListener);
|
|
mPreferenceCategory.addPreference(pref);
|
|
mRadioButtonPreferences.add(pref);
|
|
return pref;
|
|
}
|
|
|
|
private View.OnClickListener mConversationSettingsWidgetClickListener =
|
|
new View.OnClickListener() {
|
|
@Override
|
|
public void onClick(View v) {
|
|
new SubSettingLauncher(mPreferenceScreenContext)
|
|
.setDestination(ConversationListSettings.class.getName())
|
|
.setSourceMetricsCategory(SettingsEnums.DND_CONVERSATIONS)
|
|
.launch();
|
|
}
|
|
};
|
|
|
|
private RadioButtonPreference.OnClickListener mRadioButtonClickListener =
|
|
new RadioButtonPreference.OnClickListener() {
|
|
@Override
|
|
public void onRadioButtonClicked(RadioButtonPreference preference) {
|
|
int selectedConversationSetting = keyToSetting(preference.getKey());
|
|
if (selectedConversationSetting != mBackend.getPriorityConversationSenders()) {
|
|
mBackend.saveConversationSenders(selectedConversationSetting);
|
|
}
|
|
}
|
|
};
|
|
}
|