Loading src/com/android/contacts/list/EmailAddressListAdapter.java +1 −0 Original line number Diff line number Diff line Loading @@ -135,6 +135,7 @@ public class EmailAddressListAdapter extends ContactEntryListAdapter { ContactListItemView view = (ContactListItemView)itemView; bindSectionHeaderAndDivider(view, position); bindName(view, cursor); bindViewId(view, cursor, EmailQuery.EMAIL_ID); bindPhoto(view, cursor); bindEmailAddress(view, cursor); } Loading src/com/android/contacts/list/JoinContactListAdapter.java +2 −2 Original line number Diff line number Diff line Loading @@ -187,14 +187,14 @@ public class JoinContactListAdapter extends ContactListAdapter { final ContactListItemView view = (ContactListItemView) itemView; view.setSectionHeader(null); bindPhoto(view, partition, cursor); bindName(view, cursor); bindNameAndViewId(view, cursor); break; } case PARTITION_ALL_CONTACTS: { final ContactListItemView view = (ContactListItemView) itemView; bindSectionHeaderAndDivider(view, position, cursor); bindPhoto(view, partition, cursor); bindName(view, cursor); bindNameAndViewId(view, cursor); break; } } Loading src/com/android/contacts/list/LegacyContactListAdapter.java +1 −0 Original line number Diff line number Diff line Loading @@ -84,6 +84,7 @@ public class LegacyContactListAdapter extends ContactEntryListAdapter { protected void bindView(View itemView, int partition, Cursor cursor, int position) { ContactListItemView view = (ContactListItemView)itemView; bindName(view, cursor); bindViewId(view, cursor, PERSON_ID_COLUMN_INDEX); bindPresence(view, cursor); } Loading src/com/android/contacts/list/LegacyPhoneNumberListAdapter.java +1 −0 Original line number Diff line number Diff line Loading @@ -89,6 +89,7 @@ public class LegacyPhoneNumberListAdapter extends ContactEntryListAdapter { protected void bindView(View itemView, int partition, Cursor cursor, int position) { ContactListItemView view = (ContactListItemView)itemView; bindName(view, cursor); bindViewId(view, cursor, PHONE_ID_COLUMN_INDEX); bindPhoneNumber(view, cursor); } Loading src/com/android/contacts/list/LegacyPostalAddressListAdapter.java +1 −0 Original line number Diff line number Diff line Loading @@ -89,6 +89,7 @@ public class LegacyPostalAddressListAdapter extends ContactEntryListAdapter { protected void bindView(View itemView, int partition, Cursor cursor, int position) { ContactListItemView view = (ContactListItemView)itemView; bindName(view, cursor); bindViewId(view, cursor, POSTAL_ID_COLUMN_INDEX); bindPostalAddress(view, cursor); } Loading Loading
src/com/android/contacts/list/EmailAddressListAdapter.java +1 −0 Original line number Diff line number Diff line Loading @@ -135,6 +135,7 @@ public class EmailAddressListAdapter extends ContactEntryListAdapter { ContactListItemView view = (ContactListItemView)itemView; bindSectionHeaderAndDivider(view, position); bindName(view, cursor); bindViewId(view, cursor, EmailQuery.EMAIL_ID); bindPhoto(view, cursor); bindEmailAddress(view, cursor); } Loading
src/com/android/contacts/list/JoinContactListAdapter.java +2 −2 Original line number Diff line number Diff line Loading @@ -187,14 +187,14 @@ public class JoinContactListAdapter extends ContactListAdapter { final ContactListItemView view = (ContactListItemView) itemView; view.setSectionHeader(null); bindPhoto(view, partition, cursor); bindName(view, cursor); bindNameAndViewId(view, cursor); break; } case PARTITION_ALL_CONTACTS: { final ContactListItemView view = (ContactListItemView) itemView; bindSectionHeaderAndDivider(view, position, cursor); bindPhoto(view, partition, cursor); bindName(view, cursor); bindNameAndViewId(view, cursor); break; } } Loading
src/com/android/contacts/list/LegacyContactListAdapter.java +1 −0 Original line number Diff line number Diff line Loading @@ -84,6 +84,7 @@ public class LegacyContactListAdapter extends ContactEntryListAdapter { protected void bindView(View itemView, int partition, Cursor cursor, int position) { ContactListItemView view = (ContactListItemView)itemView; bindName(view, cursor); bindViewId(view, cursor, PERSON_ID_COLUMN_INDEX); bindPresence(view, cursor); } Loading
src/com/android/contacts/list/LegacyPhoneNumberListAdapter.java +1 −0 Original line number Diff line number Diff line Loading @@ -89,6 +89,7 @@ public class LegacyPhoneNumberListAdapter extends ContactEntryListAdapter { protected void bindView(View itemView, int partition, Cursor cursor, int position) { ContactListItemView view = (ContactListItemView)itemView; bindName(view, cursor); bindViewId(view, cursor, PHONE_ID_COLUMN_INDEX); bindPhoneNumber(view, cursor); } Loading
src/com/android/contacts/list/LegacyPostalAddressListAdapter.java +1 −0 Original line number Diff line number Diff line Loading @@ -89,6 +89,7 @@ public class LegacyPostalAddressListAdapter extends ContactEntryListAdapter { protected void bindView(View itemView, int partition, Cursor cursor, int position) { ContactListItemView view = (ContactListItemView)itemView; bindName(view, cursor); bindViewId(view, cursor, POSTAL_ID_COLUMN_INDEX); bindPostalAddress(view, cursor); } Loading