From 37b7f1a539edc88ef5bbbc7f5f172e65e901ab85 Mon Sep 17 00:00:00 2001 From: Michael W Date: Fri, 27 Oct 2023 14:58:34 +0200 Subject: [PATCH] Messaging: All contacts: Remove space for sections * Due to the sections not working anymore since we removed the duplicate numbers, we are left with a rather large empty space left of the contacts * Disable sectioning to make it look properly again Change-Id: Iff1849b80d70269933708e5440809c657f0d70d9 --- .../android/messaging/ui/contact/AllContactsListViewHolder.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/com/android/messaging/ui/contact/AllContactsListViewHolder.java b/src/com/android/messaging/ui/contact/AllContactsListViewHolder.java index 7263c54..960f04c 100644 --- a/src/com/android/messaging/ui/contact/AllContactsListViewHolder.java +++ b/src/com/android/messaging/ui/contact/AllContactsListViewHolder.java @@ -27,7 +27,7 @@ import com.android.messaging.ui.contact.ContactListItemView.HostInterface; public class AllContactsListViewHolder extends CustomHeaderPagerListViewHolder { public AllContactsListViewHolder(final Context context, final HostInterface clivHostInterface) { super(context, new ContactListAdapter(context, null, clivHostInterface, - true /* needAlphabetHeader */)); + false /* needAlphabetHeader */)); } @Override