Home
last modified time | relevance | path

Searched refs:bindView (Results 1 – 25 of 49) sorted by relevance

12

/packages/apps/ContactsCommon/src/com/android/contacts/common/list/
DContactListFilterView.java85 public void bindView(AccountTypeManager accountTypes) { in bindView() method in ContactListFilterView
102 bindView(0, R.string.list_filter_all_accounts); in bindView()
106 bindView(R.drawable.ic_menu_star_holo_light, R.string.list_filter_all_starred); in bindView()
110 bindView(R.drawable.ic_menu_settings_holo_light, R.string.list_filter_customize); in bindView()
114 bindView(0, R.string.list_filter_phones); in bindView()
118 bindView(0, R.string.list_filter_single); in bindView()
139 private void bindView(int iconResource, int textResource) { in bindView() method in ContactListFilterView
DDefaultContactListAdapter.java223 protected void bindView(View itemView, int partition, Cursor cursor, int position) { in bindView() method in DefaultContactListAdapter
224 super.bindView(itemView, partition, cursor, position); in bindView()
/packages/apps/Settings/src/com/android/settings/datausage/
DAppDataUsagePreference.java49 UidDetailTask.bindView(provider, item, this); in AppDataUsagePreference()
87 public static void bindView(UidDetailProvider provider, AppItem item, in bindView() method in AppDataUsagePreference.UidDetailTask
91 bindView(cachedDetail, target); in bindView()
98 private static void bindView(UidDetail detail, Preference target) { in bindView() method in AppDataUsagePreference.UidDetailTask
110 bindView(null, mTarget); in onPreExecute()
120 bindView(result, mTarget); in onPostExecute()
/packages/experimental/LoaderApp/src/com/android/loaderapp/
DCursorFactoryListAdapter.java35 public void bindView(View view, Context context, Cursor cursor); in bindView() method
55 public void bindView(View view, Context context, Cursor cursor) { in bindView() method in CursorFactoryListAdapter.ResourceViewFactory
69 mViewFactory.bindView(view, context, cursor); in newView()
74 public void bindView(View view, Context context, Cursor cursor) { in bindView() method in CursorFactoryListAdapter
75 mViewFactory.bindView(view, context, cursor); in bindView()
/packages/apps/Dialer/src/com/android/dialer/filterednumber/
DViewNumbersToImportAdapter.java48 public void bindView(View view, Context context, Cursor cursor) { in bindView() method in ViewNumbersToImportAdapter
49 super.bindView(view, context, cursor); in bindView()
DBlockedNumbersAdapter.java52 public void bindView(View view, final Context context, Cursor cursor) { in bindView() method in BlockedNumbersAdapter
53 super.bindView(view, context, cursor); in bindView()
/packages/apps/UnifiedEmail/src/com/android/mail/browse/
DConversationViewAdapter.java148 public void bindView(View v, boolean measureOnly) { in bindView() method in ConversationViewAdapter.ConversationHeaderItem
196 public void bindView(View v, boolean measureOnly) { in bindView() method in ConversationViewAdapter.ConversationFooterItem
290 public void bindView(View v, boolean measureOnly) { in bindView() method in ConversationViewAdapter.MessageHeaderItem
428 public void bindView(View v, boolean measureOnly) { in bindView() method in ConversationViewAdapter.MessageFooterItem
502 public void bindView(View v, boolean measureOnly) { in bindView() method in ConversationViewAdapter.SuperCollapsedBlockItem
616 item.bindView(v, measureOnly); in getView()
/packages/apps/Dialer/InCallUI/src/com/android/incallui/
DInCallContactInteractions.java312 public abstract void bindView(View listItem); in bindView() method in InCallContactInteractions.ContactContextInfo
321 public void bindView(View listItem) { in bindView() method in InCallContactInteractions.BusinessContextInfo
349 public void bindView(View listItem) { in bindView() method in InCallContactInteractions.PersonContextInfo
395 item.bindView(listItem); in getView()
/packages/apps/Contacts/src/com/android/contacts/list/
DHeaderEntryContactListAdapter.java94 protected void bindView(View itemView, int partition, Cursor cursor, int position) { in bindView() method in HeaderEntryContactListAdapter
95 super.bindView(itemView, partition, cursor, position + getHeaderEntryCount()); in bindView()
DLegacyContactListAdapter.java84 protected void bindView(View itemView, int partition, Cursor cursor, int position) { in bindView() method in LegacyContactListAdapter
85 super.bindView(itemView, partition, cursor, position); in bindView()
DMultiSelectEntryContactListAdapter.java110 protected void bindView(View itemView, int partition, Cursor cursor, int position) { in bindView() method in MultiSelectEntryContactListAdapter
111 super.bindView(itemView, partition, cursor, position); in bindView()
DLegacyPhoneNumberListAdapter.java89 protected void bindView(View itemView, int partition, Cursor cursor, int position) { in bindView() method in LegacyPhoneNumberListAdapter
90 super.bindView(itemView, partition, cursor, position); in bindView()
DLegacyPostalAddressListAdapter.java89 protected void bindView(View itemView, int partition, Cursor cursor, int position) { in bindView() method in LegacyPostalAddressListAdapter
90 super.bindView(itemView, partition, cursor, position); in bindView()
DPostalAddressListAdapter.java125 protected void bindView(View itemView, int partition, Cursor cursor, int position) { in bindView() method in PostalAddressListAdapter
126 super.bindView(itemView, partition, cursor, position); in bindView()
DEmailAddressListAdapter.java134 protected void bindView(View itemView, int partition, Cursor cursor, int position) { in bindView() method in EmailAddressListAdapter
135 super.bindView(itemView, partition, cursor, position); in bindView()
DJoinContactListAdapter.java184 protected void bindView(View itemView, int partition, Cursor cursor, int position) { in bindView() method in JoinContactListAdapter
185 super.bindView(itemView, partition, cursor, position); in bindView()
/packages/apps/Dialer/src/com/android/dialer/list/
DBlockedListSearchAdapter.java69 protected void bindView(View itemView, int partition, Cursor cursor, int position) { in bindView() method in BlockedListSearchAdapter
70 super.bindView(itemView, partition, cursor, position); in bindView()
DAllContactsFragment.java135 protected void bindView(View itemView, int partition, Cursor cursor, int position) { in createListAdapter()
136 super.bindView(itemView, partition, cursor, position); in createListAdapter()
/packages/services/Telecomm/src/com/android/server/telecom/settings/
DBlockedNumbersAdapter.java40 public void bindView(View view, final Context context, final Cursor cursor) { in bindView() method in BlockedNumbersAdapter
41 super.bindView(view, context, cursor); in bindView()
/packages/experimental/NotificationLog/src/com/android/notificationlog/
DNotificationLogActivity.java78 bindView(view, mNotificationEvents.get(position)); in getView()
83 private final void bindView(View view, EventLog.Event evt) { in bindView() method in NotificationLogActivity.NotificationLogAdapter
/packages/apps/Messaging/src/com/android/messaging/ui/contact/
DContactDropdownLayouter.java71 public View bindView(final View convertView, final ViewGroup parent, final RecipientEntry entry, in bindView() method in ContactDropdownLayouter
81 return super.bindView(convertView, parent, entry, position, type, substring, in bindView()
/packages/experimental/LoaderApp/src/com/android/loaderapp/fragments/
DContactEntryAdapter.java241 bindView(v, getEntry(mSections, position, mSeparators)); in getView()
259 protected abstract void bindView(View view, E entry); in bindView() method in ContactEntryAdapter
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
DCellBroadcastCursorAdapter.java65 public void bindView(View view, Context context, Cursor cursor) { in bindView() method in CellBroadcastCursorAdapter
/packages/apps/Messaging/src/com/android/messaging/ui/mediapicker/
DGalleryGridAdapter.java48 public void bindView(final View view, final Context context, final Cursor cursor) { in bindView() method in GalleryGridAdapter
/packages/apps/Calendar/src/com/android/calendar/
DEmailAddressAdapter.java54 protected void bindView(View view, String directoryType, String directoryName, in bindView() method in EmailAddressAdapter

12