/developers/build/prebuilts/gradle/GridViewPager/Wearable/src/main/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>
|
/developers/build/prebuilts/gradle/RecyclerView/Application/src/main/java/com/example/android/recyclerview/ |
CustomAdapter.java | 30 public class CustomAdapter extends RecyclerView.Adapter<CustomAdapter.ViewHolder> { 61 * Initialize the dataset of the Adapter.
|
/developers/build/prebuilts/gradle/SpeedTracker/Wearable/src/main/java/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 {
|
/developers/samples/android/content/documentsUi/DirectorySelection/Application/src/main/java/com/example/android/directoryselection/ |
DirectoryEntryAdapter.java | 31 public class DirectoryEntryAdapter extends RecyclerView.Adapter<DirectoryEntryAdapter.ViewHolder> { 65 * Initialize the directory entries of the Adapter.
|
/developers/samples/android/ui/views/RecyclerView/Application/src/main/java/com/example/android/recyclerview/ |
CustomAdapter.java | 30 public class CustomAdapter extends RecyclerView.Adapter<CustomAdapter.ViewHolder> { 61 * Initialize the dataset of the Adapter.
|
/developers/samples/android/wearable/wear/GridViewPager/Wearable/src/main/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>
|
/developers/samples/android/wearable/wear/SpeedTracker/Wearable/src/main/java/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/ApiDemos/src/com/example/android/apis/view/ |
ExpandableList3.java | 31 * Demonstrates expandable lists backed by a Simple Map-based adapter 61 // Set up our adapter
|
/development/samples/browseable/DirectorySelection/src/com.example.android.directoryselection/ |
DirectoryEntryAdapter.java | 31 public class DirectoryEntryAdapter extends RecyclerView.Adapter<DirectoryEntryAdapter.ViewHolder> { 65 * Initialize the directory entries of the Adapter.
|
/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.
|
/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/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 | 78 final ArrayAdapter<CharSequence> adapter = new ArrayAdapter<CharSequence>( local 80 adapter.setDropDownViewResource(R.layout.simple_spinner_dropdown_item); 81 setAdapter(adapter); 96 * The Adapter is used to provide the data which backs this Spinner. 99 * @param adapter The SpinnerAdapter to use for this Spinner 102 public void setAdapter(SpinnerAdapter adapter) { 108 mAdapter = adapter; 267 * Jump directly to a specific item in the adapter data.
|
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/drawer/ |
ProfileSelectDialog.java | 54 UserAdapter adapter = UserAdapter.createUserAdapter(UserManager.get(context), context, local 57 .setAdapter(adapter, this);
|
/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/opt/setupwizard/library/main/src/com/android/setupwizardlib/util/ |
ListViewRequireScrollHelper.java | 53 final ListAdapter adapter = mListView.getAdapter(); local 54 if (mListView.getLastVisiblePosition() < adapter.getCount()) {
|