Searched refs:onBindViewHolder (Results 176 - 177 of 177) sorted by relevance

12345678

/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java244 * doing extra operations in onBindViewHolder call.
6237 * {@link #onBindViewHolder(ViewHolder, int, List)}. Since it will be re-used to display
6247 * @see #onBindViewHolder(ViewHolder, int)
6264 * Override {@link #onBindViewHolder(ViewHolder, int, List)} instead if Adapter can
6271 public abstract void onBindViewHolder(VH holder, int position); method in class:RecyclerView.Adapter
6293 * onBindViewHolder(). For example when the view is not attached to the screen, the
6302 public void onBindViewHolder(VH holder, int position, List<Object> payloads) { method in class:RecyclerView.Adapter
6303 onBindViewHolder(holder, position);
6321 * This method internally calls {@link #onBindViewHolder(ViewHolder, int)} to update the
6325 * @see #onBindViewHolder(ViewHolde
[all...]
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DRecyclerView.java280 * doing extra operations in onBindViewHolder call.
6667 * {@link #onBindViewHolder(ViewHolder, int, List)}. Since it will be re-used to display
6677 * @see #onBindViewHolder(ViewHolder, int)
6695 * Override {@link #onBindViewHolder(ViewHolder, int, List)} instead if Adapter can
6702 public abstract void onBindViewHolder(@NonNull VH holder, int position); method in class:RecyclerView.Adapter
6724 * onBindViewHolder(). For example when the view is not attached to the screen, the
6733 public void onBindViewHolder(@NonNull VH holder, int position, method in class:RecyclerView.Adapter
6735 onBindViewHolder(holder, position);
6762 * This method internally calls {@link #onBindViewHolder(ViewHolder, int)} to update the
6766 * @see #onBindViewHolder(ViewHolde
[all...]

Completed in 455 milliseconds

12345678