Searched defs:setAdapter (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DAbsSpinner.java79 setAdapter(adapter);
100 public void setAdapter(SpinnerAdapter adapter) { method in class:AbsSpinner
H A DAdapterView.java424 public abstract void setAdapter(T adapter); method in class:AdapterView
H A DExpandableListView.java422 * {@link #setAdapter(ExpandableListAdapter)}.
427 public void setAdapter(ListAdapter adapter) { method in class:ExpandableListView
429 "For ExpandableListView, use setAdapter(ExpandableListAdapter) instead of " +
430 "setAdapter(ListAdapter)");
463 public void setAdapter(ExpandableListAdapter adapter) { method in class:ExpandableListView
475 super.setAdapter(mConnector);
H A DGridView.java117 public void setAdapter(ListAdapter adapter) { method in class:GridView
H A DAutoCompleteTextView.java70 * textView.setAdapter(adapter);
597 public <T extends ListAdapter & Filterable> void setAdapter(T adapter) { method in class:AutoCompleteTextView
613 mDropDownList.setAdapter(mAdapter);
1290 mDropDownList.setAdapter(adapter);
1439 * or <code>null</code> if {@link #setAdapter} was not called with
H A DListView.java171 setAdapter(new ArrayAdapter<CharSequence>(context,
268 * NOTE: Call this before calling setAdapter. This is so ListView can wrap
280 "Cannot add header view to list -- setAdapter has already been called.");
295 * NOTE: Call this before calling setAdapter. This is so ListView can wrap
346 * NOTE: Call this before calling setAdapter. This is so ListView can wrap
372 * <p>NOTE: Call this before calling setAdapter. This is so ListView can wrap the supplied
409 * might not be the same adapter passed to {@link #setAdapter(ListAdapter)} but
414 * @see #setAdapter(ListAdapter)
435 public void setAdapter(ListAdapter adapter) { method in class:ListView
/frameworks/base/core/java/android/app/
H A DAlertDialog.java495 public Builder setAdapter(final ListAdapter adapter, final OnClickListener listener) { method in class:AlertDialog.Builder
/frameworks/base/core/tests/coretests/src/android/util/
H A DExpandableListScenario.java56 protected void setAdapter(ListView listView) { method in class:ExpandableListScenario
57 ((ExpandableListView) listView).setAdapter(mAdapter = createAdapter());
H A DListScenario.java337 setAdapter(mListView);
449 protected void setAdapter(ListView listView) { method in class:ListScenario
450 listView.setAdapter(new MyAdapter());

Completed in 1693 milliseconds