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:
@@ -32,7 +32,6 @@ public class PriorityConversationsPreferenceController extends
|
||||
ConversationListPreferenceController {
|
||||
|
||||
private static final String KEY = "important_conversations";
|
||||
private static final String LIST_KEY = "important_conversations_list";
|
||||
private List<ConversationChannelWrapper> mConversations;
|
||||
|
||||
public PriorityConversationsPreferenceController(Context context,
|
||||
@@ -50,6 +49,11 @@ public class PriorityConversationsPreferenceController extends
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
boolean matchesFilter(ConversationChannelWrapper conversation) {
|
||||
return conversation.getNotificationChannel().isImportantConversation();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void updateState(Preference preference) {
|
||||
PreferenceCategory pref = (PreferenceCategory) preference;
|
||||
@@ -67,7 +71,7 @@ public class PriorityConversationsPreferenceController extends
|
||||
if (mContext == null) {
|
||||
return;
|
||||
}
|
||||
populateList(mConversations, pref, pref.findPreference(LIST_KEY));
|
||||
populateList(mConversations, pref);
|
||||
}
|
||||
}.execute();
|
||||
|
||||
|
Reference in New Issue
Block a user