Searched defs:getViewForPosition (Results 1 - 3 of 3) sorted by relevance

/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
H A DGridLayoutManager.java1083 protected View getViewForPosition(int position) { method in class:GridLayoutManager
1084 return mRecycler.getViewForPosition(position);
1287 View view = mRecycler.getViewForPosition(position);
1612 View v = getViewForPosition(index - mPositionDeltaInPreLayout);
1961 // and call getViewForPosition() again to rebind.
1982 view = getViewForPosition(position);
/frameworks/base/core/java/com/android/internal/widget/
H A DRecyclerView.java5225 * Helper method for getViewForPosition.
5293 * {@link #getViewForPosition(int)} or created by
5296 * Generally, a LayoutManager should acquire its views via {@link #getViewForPosition(int)}
5300 * Note that, {@link #getViewForPosition(int)} already binds the View to the position so
5341 * {@link #getViewForPosition(int)} or {@link #bindViewToPosition(View, int)} is called.
5381 public View getViewForPosition(int position) { method in class:RecyclerView.Recycler
5382 return getViewForPosition(position, false);
5385 View getViewForPosition(int position, boolean dryRun) { method in class:RecyclerView.Recycler
6186 * When {@link Recycler#getViewForPosition(int)} is called, Recycler checks attached scrap and
7662 * {@link Recycler#getViewForPosition(in
[all...]
/frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
H A DRecyclerView.java3332 // because getViewForPosition() will crash when LM uses a child to measure.
5650 * Helper method for getViewForPosition.
5718 * {@link #getViewForPosition(int)} or created by
5721 * Generally, a LayoutManager should acquire its views via {@link #getViewForPosition(int)}
5725 * Note that, {@link #getViewForPosition(int)} already binds the View to the position so
5766 * {@link #getViewForPosition(int)} or {@link #bindViewToPosition(View, int)} is called.
5807 public View getViewForPosition(int position) { method in class:RecyclerView.Recycler
5808 return getViewForPosition(position, false);
5811 View getViewForPosition(int position, boolean dryRun) { method in class:RecyclerView.Recycler
6614 * When {@link Recycler#getViewForPosition(in
[all...]

Completed in 2500 milliseconds