Searched defs:adapter (Results 51 - 54 of 54) sorted by relevance

123

/frameworks/base/packages/PrintSpooler/src/com/android/printspooler/
H A DPrintJobConfigActivity.java328 public PrintController(RemotePrintDocumentAdapter adapter) { argument
329 mRemotePrintAdapter = adapter;
1376 // TODO: While the data did not change and we set the adapter
1378 // current item unless we poke the adapter. This requires more
1380 // call into the adapter if the view is not visible which is the
1381 // case when we set the adapter.
1903 // If the media sizes changed, we update the adapter and the spinner.
1921 // Rebuild the adapter data.
1958 // If the color modes changed, we update the adapter and the spinner.
1982 // Rebuild the adapter dat
[all...]
/frameworks/ex/chips/src/com/android/ex/chips/
H A DRecipientEditTextView.java434 public <T extends ListAdapter & Filterable> void setAdapter(T adapter) { argument
435 super.setAdapter(adapter);
436 ((BaseRecipientAdapter) adapter)
1204 ListAdapter adapter = getAdapter();
1205 if (adapter != null && adapter.getCount() > 0 && enoughToFilter()
1501 // Checked item would be -1 if the adapter has not
2526 final BaseRecipientAdapter adapter = (BaseRecipientAdapter) getAdapter();
2527 RecipientAlternatesAdapter.getMatchingRecipients(getContext(), adapter, addresses,
2528 adapter
[all...]
/frameworks/support/v4/java/android/support/v4/view/
H A DViewPager.java103 * Used to track what the expected number of items in the adapter should be.
405 * @param adapter Adapter to use
407 public void setAdapter(PagerAdapter adapter) { argument
423 mAdapter = adapter;
448 if (mAdapterChangeListener != null && oldAdapter != adapter) {
449 mAdapterChangeListener.onAdapterChanged(oldAdapter, adapter);
465 * Retrieve the current adapter supplying pages.
483 * layout with its current adapter there will be a smooth animated transition between
673 * limit will be recreated from the adapter when needed.
962 throw new IllegalStateException("The application's PagerAdapter changed the adapter'
[all...]
/frameworks/base/core/java/android/widget/
H A DAbsListView.java259 * and the value holds the last known position in the adapter for that id.
274 * The adapter containing the data to be displayed by this view
279 * The remote adapter containing the data to be displayed by this view to be set
284 * If mAdapter != null, whenever this is true the adapter has stable IDs.
572 * The select child's view (from the adapter's getView) is enabled.
643 * the top of the first position in the adapter, based on the last time
650 * the bottom of the last position in the adapter, based on the last time
859 public void setAdapter(ListAdapter adapter) { argument
860 if (adapter != null) {
948 * choice mode has not been set to {@link #CHOICE_MODE_NONE} and the adapter
[all...]

Completed in 434 milliseconds

123