HomeSort by relevance Sort by last modified time
    Searched defs:bindView (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastCursorAdapter.java 65 public void bindView(View view, Context context, Cursor cursor) {
  /packages/experimental/LoaderApp/src/com/android/loaderapp/
CursorFactoryListAdapter.java 35 public void bindView(View view, Context context, Cursor cursor);
55 public void bindView(View view, Context context, Cursor cursor) {
69 mViewFactory.bindView(view, context, cursor);
74 public void bindView(View view, Context context, Cursor cursor) {
75 mViewFactory.bindView(view, context, cursor);
  /development/apps/Development/src/com/android/development/
ArrayAdapter.java 40 public abstract void bindView(View view, E item);
69 bindView(view, mList.get(position));
AppHwConfigList.java 130 bindView(view, mList.get(position));
134 private final void bindView(View view, PackageInfo info) {
InstrumentationList.java 92 bindView(view, mList.get(position));
96 private final void bindView(View view, InstrumentationInfo info)
RunningProcesses.java 121 bindView(view, mList.get(position));
125 private final void bindView(View view, ListItem info) {
  /frameworks/ex/chips/src/com/android/ex/chips/
SingleRecipientArrayAdapter.java 46 bindView(convertView, getItem(position));
54 private static void bindView(View view, RecipientEntry entry) {
  /packages/apps/Calendar/src/com/android/calendar/
EmailAddressAdapter.java 54 protected void bindView(View view, String directoryType, String directoryName,
  /packages/apps/Email/src/com/android/email/
EmailAddressAdapter.java 55 protected void bindView(View view, String directoryType, String directoryName,
  /packages/providers/DownloadProvider/ui/src/com/android/providers/downloads/ui/
DateSortedDownloadAdapter.java 57 mDelegate.bindView(convertView, pos);
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerListHelper.java 67 public void bindView(View view, Context context, Cursor cursor) {
  /packages/apps/Gallery2/src/com/android/photos/adapters/
AlbumSetCursorAdapter.java 50 public void bindView(View v, Context context, Cursor cursor) {
PhotoThumbnailAdapter.java 48 public void bindView(View view, Context context, Cursor cursor) {
  /development/samples/ApiDemos/src/com/example/android/apis/view/
AutoComplete4.java 72 public void bindView(View view, Context context, Cursor cursor) {
  /development/samples/BusinessCard/src/com/example/android/businesscard/
BusinessCardActivity.java 108 bindView(result);
118 protected void bindView(ContactInfo contactInfo) {
  /packages/apps/Bluetooth/src/com/android/bluetooth/opp/
BluetoothOppTransferAdapter.java 66 public void bindView(View view, Context context, Cursor cursor) {
  /packages/apps/Browser/src/com/android/browser/
BrowserBookmarksAdapter.java 62 public void bindView(View view, BrowserBookmarksAdapterItem object) {
  /packages/apps/Contacts/src/com/android/contacts/list/
LegacyContactListAdapter.java 84 protected void bindView(View itemView, int partition, Cursor cursor, int position) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
ContactListFilterView.java 79 public void bindView(AccountTypeManager accountTypes) {
96 bindView(0, R.string.list_filter_all_accounts);
100 bindView(R.drawable.ic_menu_star_holo_light, R.string.list_filter_all_starred);
104 bindView(R.drawable.ic_menu_settings_holo_light, R.string.list_filter_customize);
108 bindView(0, R.string.list_filter_phones);
112 bindView(0, R.string.list_filter_single);
132 private void bindView(int iconResource, int textResource) {
  /packages/providers/ApplicationsProvider/src/com/android/providers/applications/
ApplicationsAdapter.java 40 public void bindView(View view, Context context, Cursor cursor) {
  /cts/tests/tests/widget/src/android/widget/cts/
ResourceCursorAdapterTest.java 177 public void bindView(View view, Context context, Cursor cursor) {
  /development/samples/ApiDemos/src/com/example/android/apis/app/
QuickContactsDemo.java 76 public void bindView(View view, Context context, Cursor cursor) {
  /frameworks/base/core/java/android/widget/
SimpleCursorAdapter.java 127 * @see android.widget.CursorAdapter#bindView(android.view.View,
135 public void bindView(View view, Context context, Cursor cursor) {
173 * @see #bindView(android.view.View, android.content.Context, android.database.Cursor)
186 * @see #bindView(android.view.View, android.content.Context, android.database.Cursor)
194 * Called by bindView() to set the image for an ImageView but only if
217 * Called by bindView() to set the text for a TextView but only if
379 * @see SimpleCursorAdapter#bindView(android.view.View, android.content.Context, android.database.Cursor)
SimpleCursorTreeAdapter.java 212 private void bindView(View view, Context context, Cursor cursor, int[] from, int[] to) {
254 bindView(view, context, cursor, mChildFrom, mChildTo);
264 bindView(view, context, cursor, mGroupFrom, mGroupTo);
268 * Called by bindView() to set the image for an ImageView. By default, the
284 * Called by bindView() to set the text for a TextView but only if
SimpleExpandableListAdapter.java 229 bindView(v, mChildData.get(groupPosition).get(childPosition), mChildFrom, mChildTo);
243 private void bindView(View view, Map<String, ?> data, String[] from, int[] to) {
278 bindView(v, mGroupData.get(groupPosition), mGroupFrom, mGroupTo);

Completed in 825 milliseconds

1 2 3 4 5