Update all conversations screen

Update text, and filter the lower section to match the new
header

Test: atest
Fixes: 151765526
Change-Id: I5bc052813745908df8602bf397434a76b294ba6c
This commit is contained in:
Julia Reynolds
2020-03-24 15:25:38 -04:00
parent 87c0179c01
commit 2f0bd6552c
6 changed files with 38 additions and 22 deletions

View File

@@ -30,7 +30,7 @@ import java.util.List;
public class AllConversationsPreferenceController extends ConversationListPreferenceController {
private static final String KEY = "all_conversations";
private static final String KEY = "other_conversations";
private List<ConversationChannelWrapper> mConversations;
@@ -49,6 +49,11 @@ public class AllConversationsPreferenceController extends ConversationListPrefer
return true;
}
@Override
boolean matchesFilter(ConversationChannelWrapper conversation) {
return !conversation.getNotificationChannel().isImportantConversation();
}
@Override
public void updateState(Preference preference) {
PreferenceCategory pref = (PreferenceCategory) preference;
@@ -66,7 +71,7 @@ public class AllConversationsPreferenceController extends ConversationListPrefer
if (mContext == null) {
return;
}
populateList(mConversations, pref, pref);
populateList(mConversations, pref);
}
}.execute();
}