HomeSort by relevance Sort by last modified time
    Searched full:adapter (Results 551 - 575 of 2956) sorted by null

<<21222324252627282930>>

  /frameworks/support/samples/Support7Demos/src/com/example/android/supportv7/widget/
LinearLayoutManagerJankActivity.java 25 import com.example.android.supportv7.widget.adapter.SimpleStringAdapter;
46 protected RecyclerView.Adapter createAdapter() {
  /hardware/qcom/gps/core/
ContextBase.h 62 inline void requestUlp(LocAdapterBase* adapter,
64 mLBSProxy->requestUlp(adapter, capabilities);
  /hardware/qcom/gps/msm8084/core/
ContextBase.h 61 inline void requestUlp(LocAdapterBase* adapter,
63 mLBSProxy->requestUlp(adapter, capabilities);
  /hardware/qcom/gps/msm8909/core/
ContextBase.h 62 inline void requestUlp(LocAdapterBase* adapter,
64 mLBSProxy->requestUlp(adapter, capabilities);
  /hardware/qcom/gps/msm8994/core/
ContextBase.h 62 inline void requestUlp(LocAdapterBase* adapter,
64 mLBSProxy->requestUlp(adapter, capabilities);
  /hardware/qcom/gps/msmcobalt/core/
LBSProxyBase.h 56 inline virtual void requestUlp(LocAdapterBase* adapter,
59 (void)adapter;
UlpProxyBase.h 89 inline virtual void setAdapter(LocAdapterBase* adapter) {
91 (void)adapter;
  /packages/apps/Camera2/src/com/android/camera/data/
FilmstripDataAdapterProxy.java 30 * addressed in this abstract class since wrapping another data adapter
53 throw new AssertionError("data adapter is null");
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/category/
CategoryTrack.java 59 public void setAdapter(CategoryAdapter adapter) {
60 mAdapter = adapter;
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/adapter/
MtpPagerAdapter.java 17 package com.android.gallery3d.ingest.adapter;
34 * Adapter for full-screen MTP pager.
  /packages/apps/Messaging/src/com/android/messaging/ui/
CursorRecyclerAdapter.java 36 extends RecyclerView.Adapter<VH> {
79 * If set the adapter will call requery() on the cursor whenever a content change
91 * If set the adapter will register a content observer on the cursor and will call
93 * using this flag: you will need to unset the current Cursor from the adapter
105 * @param flags Flags used to determine the behavior of the adapter; may
161 * @see android.support.v7.widget.RecyclerView.Adapter#getItem(int)
173 * @see android.support.v7.widget.RecyclerView.Adapter#getItemId(int)
213 * @see android.support.v7.widget.RecyclerView.Adapter#createViewHolder(Context, ViewGroup, int)
CustomHeaderViewPager.java 65 final PagerAdapter adapter = new CustomHeaderViewPagerAdapter(viewHolders); local
66 mViewPager.setAdapter(adapter);
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ui/
BaseSuggestionView.java 69 public void bindAdapter(SuggestionsAdapter<?> adapter, long suggestionId) {
70 mAdapter = adapter;
  /packages/apps/TV/src/com/android/tv/menu/
CustomizableOptionsRowAdapter.java 27 * An adapter of options that can accepts customization data.
54 // Type of MenuAction should be unique in the Adapter.
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationPagerController.java 85 * zero (with the fragment visibility hint ON) when the adapter is initially set.
156 LogUtils.d(LOG_TAG, "IN CPC.show, adapter=%s", mPagerAdapter);
159 LogUtils.d(LOG_TAG, "init pager adapter, count=%d initialConv=%s adapter=%s",
194 LogUtils.d(LOG_TAG, "IN CPC.hide, clearing adapter and unregistering list observer");
246 // take the adapter out of singleton mode to begin loading the
249 LogUtils.i(LOG_TAG, "IN pager adapter, finished loading primary conversation," +
269 * Stops listening to changes to the adapter. This must be followed immediately by
  /system/bt/service/ipc/
ipc_handler_linux.h 38 IPCHandlerLinux(bluetooth::Adapter* adapter,
  /system/bt/test/suite/adapter/
bluetooth_test.h 56 // Adapter Properties callback
87 // A callback that is called when the adapter state changes
  /frameworks/support/v14/preference/src/android/support/v14/preference/
PreferenceFragment.java 608 * Creates the root adapter.
610 * @param preferenceScreen Preference screen object to create the adapter for.
611 * @return An adapter that contains the preferences contained in this {@link PreferenceScreen}.
613 protected RecyclerView.Adapter onCreateAdapter(PreferenceScreen preferenceScreen) {
683 final RecyclerView.Adapter adapter = mList.getAdapter();
684 if (!(adapter instanceof
686 if (adapter != null) {
687 throw new IllegalStateException("Adapter must implement "
690 // Adapter was set to null, so don't scroll I guess
    [all...]
  /frameworks/support/v7/preference/src/android/support/v7/preference/
PreferenceFragmentCompat.java 597 * Creates the root adapter.
599 * @param preferenceScreen Preference screen object to create the adapter for.
600 * @return An adapter that contains the preferences contained in this {@link PreferenceScreen}.
602 protected RecyclerView.Adapter onCreateAdapter(PreferenceScreen preferenceScreen) {
672 final RecyclerView.Adapter adapter = mList.getAdapter();
673 if (!(adapter instanceof
675 if (adapter != null) {
676 throw new IllegalStateException("Adapter must implement "
679 // Adapter was set to null, so don't scroll I guess
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/util/
ListScenario.java 88 * (external users can access this info using the adapter)
137 * @param startingSelectionPosition The selected position within the adapter's data set.
252 * adapter on the list view. If this is false, the client MUST set it
254 * must be done before the adapter is set).
443 * Sets an adapter on a ListView.
445 * @param listView The ListView to set the adapter on.
582 * Return an item type for the specified position in the adapter. Override if your
583 * adapter creates more than one type.
590 * Return an the number of types created by the adapter. Override if your
591 * adapter creates more than one type
    [all...]
  /external/webrtc/webrtc/examples/androidapp/src/org/appspot/apprtc/
ConnectActivity.java 78 private ArrayAdapter<String> adapter; field in class:ConnectActivity
200 adapter = new ArrayAdapter<String>(
202 roomListView.setAdapter(adapter);
203 if (adapter.getCount() > 0) {
398 adapter.add(newRoom);
399 adapter.notifyDataSetChanged();
409 adapter.remove(selectedRoom);
410 adapter.notifyDataSetChanged();
417 if (roomListView.getCheckedItemCount() > 0 && adapter.getCount() > 0) {
419 if (position >= adapter.getCount())
    [all...]
  /frameworks/base/core/tests/coretests/src/android/util/
ListScenario.java 88 * (external users can access this info using the adapter)
137 * @param startingSelectionPosition The selected position within the adapter's data set.
252 * adapter on the list view. If this is false, the client MUST set it
254 * must be done before the adapter is set).
445 * Sets an adapter on a ListView.
447 * @param listView The ListView to set the adapter on.
585 * Return an item type for the specified position in the adapter. Override if your
586 * adapter creates more than one type.
593 * Return the number of types created by the adapter. Override if your
594 * adapter creates more than one type
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
GuidedActionAdapter.java 50 public class GuidedActionAdapter extends RecyclerView.Adapter {
141 * @param actions The list of guided actions this adapter will manage.
142 * @param focusListener The focus listener for items in this adapter.
143 * @param presenter The presenter that will manage the display of items in this adapter.
159 * Sets the list of actions managed by this adapter.
170 * Returns the count of actions managed by this adapter.
171 * @return The count of actions managed by this adapter.
203 * Sets the click listener for items managed by this adapter.
204 * @param clickListener The click listener for this adapter.
211 * Sets the focus listener for items managed by this adapter
    [all...]
PlaybackControlsRow.java 655 * <p>If set after the row has been bound to a view, the adapter must be notified that
666 * <p>If set after the row has been bound to a view, the adapter must be notified that
688 * <p>If set after the row has been bound to a view, the adapter must be notified that
691 public final void setPrimaryActionsAdapter(ObjectAdapter adapter) {
692 mPrimaryActionsAdapter = adapter;
697 * <p>If set after the row has been bound to a view, the adapter must be notified that
700 public final void setSecondaryActionsAdapter(ObjectAdapter adapter) {
701 mSecondaryActionsAdapter = adapter;
720 * <p>If set after the row has been bound to a view, the adapter must be notified that
774 * Searches the primary adapter first, then the secondary adapter
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/account/
AccountType.java 71 * - {@link #syncAdapterPackageName} is always set to the actual sync adapter package name.
80 * or the sync adapter (for external type, including extensions).
144 * The activity class should reside in the sync adapter package as determined by
155 * The activity class should reside in the sync adapter package as determined by
166 * The activity class should reside in the sync adapter package as determined by
175 * This allows the sync adapter to provide more up-to-date information.
177 * The service class should reside in the sync adapter package as determined by
188 * is the authenticator package name but the notification service is in the sync adapter
201 // Note this resource is defined in the sync adapter package, not resourcePackageName.
241 // Note this resource is defined in the sync adapter package, not resourcePackageName
    [all...]

Completed in 783 milliseconds

<<21222324252627282930>>