HomeSort by relevance Sort by last modified time
    Searched full:adapter (Results 601 - 625 of 3250) sorted by null

<<21222324252627282930>>

  /development/samples/browseable/GridViewPager/res/values/
strings.xml 33 <string name="backgrounds_text">Backgrounds are supplied by the adapter\'s getBackground method. Parallax and crossfade effects are applied automatically.</string>
36 <string name="columns_text">When moving between rows, the pager always returns to column 0. This is adjustable in the adapter. See method getCurrentColumnForRow().</string>
  /development/samples/browseable/RecyclerView/src/com.example.android.recyclerview/
CustomAdapter.java 30 public class CustomAdapter extends RecyclerView.Adapter<CustomAdapter.ViewHolder> {
61 * Initialize the dataset of the Adapter.
  /development/samples/browseable/SpeedTracker/Wearable/src/com.example.android.wearable.speedtracker/ui/
SpeedPickerListAdapter.java 29 * A {@link android.support.wearable.view.WearableListView.Adapter} that is used to populate the
32 public class SpeedPickerListAdapter extends WearableListView.Adapter {
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
InsertionListView.java 94 * Modifies the underlying data set and adapter through the addition of the new object
100 final CustomArrayAdapter adapter = (CustomArrayAdapter)getAdapter(); local
114 long itemID = adapter.getItemId(position);
121 /** Adds the new object to the data set, thereby modifying the adapter,
124 adapter.addStableIdForDataAtPosition(0);
125 adapter.notifyDataSetChanged();
194 long itemId = adapter.getItemId(position);
340 /** Setter for the underlying data set controlling the adapter. */
  /development/samples/devbytes/animation/ListViewExpandingCells/src/com/example/android/expandingcells/
ExpandingCells.java 65 CustomArrayAdapter adapter = new CustomArrayAdapter(this, R.layout.list_view_item, mData); local
68 mListView.setAdapter(adapter);
  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
CompatActionBarNavHandler.java 25 * Adapter for action bar navigation events.
27 * This class implements an adapter that facilitates handling of action bar navigation events.
  /device/linaro/bootloader/edk2/OptionRomPkg/UndiRuntimeDxe/
Undi32.h 355 Returns the current state information for the adapter.
357 This function returns information of type InformationType from the adapter.
358 If an adapter does not support the requested informational type, then
386 Sets state information for an adapter.
388 This function sends information of type InformationType for an adapter.
389 If an adapter does not support the requested information type, then EFI_UNSUPPORTED
419 adapter with this instance of EFI_ADAPTER_INFORMATION_PROTOCOL. The list is returned
428 @retval EFI_SUCCESS The list of information type GUIDs that are supported on this adapter was
  /external/autotest/client/site_tests/bluetooth_IDCheck/
bluetooth_IDCheck.py 30 @param adapter_info: a dict of information about this device's adapter
49 @param adapter_info: a dict of information about this device's adapter
  /external/autotest/server/cros/multimedia/
system_facade_adapter.py 5 """An adapter to remotely access the system facade on DUT."""
9 """SystemFacadeRemoteAdapter is an adapter to remotely control DUT system.
  /external/glide/library/src/main/java/com/bumptech/glide/request/animation/
GlideAnimation.java 48 * @param adapter The {@link com.bumptech.glide.request.animation.GlideAnimation.ViewAdapter} wrapping a view that
54 boolean animate(R current, ViewAdapter adapter);
  /external/kernel-headers/original/uapi/misc/
cxl.h 58 /* base adapter image header is included in the image */
84 /* adapter devices */
  /external/libpcap/
pcap-linktype.manmisc.in 33 the network adapter or the network adapter driver generates from the
  /external/webrtc/talk/app/webrtc/objc/
RTCVideoRendererAdapter.mm 39 RTCVideoRendererNativeAdapter(RTCVideoRendererAdapter* adapter) {
40 _adapter = adapter;
  /frameworks/base/core/java/android/app/
ListActivity.java 156 * // Now create a new list adapter bound to the cursor.
158 * ListAdapter adapter = new SimpleCursorAdapter(
166 * // Bind to our new adapter.
167 * setListAdapter(adapter);
261 public void setListAdapter(ListAdapter adapter) {
264 mAdapter = adapter;
265 mList.setAdapter(adapter);
271 * position with the adapter's data
  /frameworks/base/core/java/android/preference/
PreferenceScreen.java 32 import android.widget.Adapter;
127 * Returns an adapter that can be attached to a {@link PreferenceActivity}
131 * This {@link PreferenceScreen} will NOT appear in the returned adapter, instead
134 * This adapter's {@link Adapter#getItem(int)} should always return a
137 * @return An adapter that provides the {@link Preference} contained in this
149 * Creates the root adapter.
151 * @return An adapter that contains the preferences contained in this {@link PreferenceScreen}.
  /frameworks/base/core/java/android/widget/
AbsSpinner.java 88 final ArrayAdapter<CharSequence> adapter = new ArrayAdapter<CharSequence>( local
90 adapter.setDropDownViewResource(R.layout.simple_spinner_dropdown_item);
91 setAdapter(adapter);
106 * The Adapter is used to provide the data which backs this Spinner.
109 * @param adapter The SpinnerAdapter to use for this Spinner
112 public void setAdapter(SpinnerAdapter adapter) {
118 mAdapter = adapter;
277 * Jump directly to a specific item in the adapter data.
  /frameworks/base/rs/java/android/renderscript/
AllocationAdapter.java 98 * Because this changes the dimensions of the adapter the
108 throw new RSInvalidStateException("Cannot set LOD when the adapter includes mipmaps.");
127 throw new RSInvalidStateException("Cannot set face when the adapter includes faces.");
150 throw new RSInvalidStateException("Cannot set X when the adapter includes X.");
175 throw new RSInvalidStateException("Cannot set Y when the adapter includes Y.");
200 throw new RSInvalidStateException("Cannot set Z when the adapter includes Z.");
221 throw new RSInvalidStateException("Cannot set arrayNum when the adapter includes arrayNum.");
259 * created, the selected value in the adapter for that dimension
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
TrackerListHelper.java 53 TrackerAdapter adapter = new TrackerAdapter(mActivity, layout, cursor); local
54 mActivity.setListAdapter(adapter);
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/
ClippedListActivity.java 53 ListAdapter adapter = new ArrayAdapter<>(this, android.R.layout.simple_list_item_1, local
55 listFragment.setListAdapter(adapter);
  /frameworks/support/samples/Support4Demos/src/com/example/android/supportv4/view/
ViewPagerActivity.java 72 // Unlike ListView adapters, the ViewPager adapter is responsible
81 // The adapter is also responsible for removing the view.
  /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() {
  /frameworks/support/samples/SupportEmojiDemos/src/com/example/android/support/text/emoji/
ListFragment.java 55 final ArrayAdapter<EmojiRepo.EmojiData> adapter = new MyArrayAdapter(getActivity(), local
58 mListView.setAdapter(adapter);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
DetailsParallax.java 41 // track the top edge of details_frame of first item of adapter
46 // track the bottom edge of details_frame of first item of adapter
  /frameworks/support/wear/src/android/support/wear/internal/widget/drawer/
WearableNavigationDrawerPresenter.java 45 * Indicates to the presenter that the drawer has a new adapter.
48 public abstract void onNewAdapter(WearableNavigationDrawerAdapter adapter);
  /hardware/qcom/gps/core/
ContextBase.h 62 inline void requestUlp(LocAdapterBase* adapter,
64 mLBSProxy->requestUlp(adapter, capabilities);

Completed in 1723 milliseconds

<<21222324252627282930>>