HomeSort by relevance Sort by last modified time
    Searched refs:findViewByPosition (Results 1 - 21 of 21) sorted by null

  /frameworks/support/leanback/src/androidTest/java/androidx/leanback/widget/
GridWidgetPrefetchTest.java 91 assertEquals(0, gridView.getLayoutManager().findViewByPosition(0).getLeft());
92 assertEquals(100, gridView.getLayoutManager().findViewByPosition(1).getLeft());
109 assertNotNull(gridView.getLayoutManager().findViewByPosition(4));
110 assertNotNull(gridView.getLayoutManager().findViewByPosition(5));
111 assertNotNull(gridView.getLayoutManager().findViewByPosition(6));
112 assertEquals(-75, gridView.getLayoutManager().findViewByPosition(4).getLeft());
113 assertEquals(25, gridView.getLayoutManager().findViewByPosition(5).getLeft());
114 assertEquals(125, gridView.getLayoutManager().findViewByPosition(6).getLeft());
142 assertEquals(50, gridView.getLayoutManager().findViewByPosition(0).getLeft());
143 assertEquals(-50, gridView.getLayoutManager().findViewByPosition(1).getLeft())
    [all...]
GridWidgetTest.java     [all...]
  /frameworks/support/v7/recyclerview/src/androidTest/java/androidx/recyclerview/widget/
GridLayoutManagerRtlTest.java 123 View child0 = mGlm.findViewByPosition(0);
126 View child1 = mGlm.findViewByPosition(secondChildPos);
GridLayoutManagerTest.java     [all...]
GridLayoutManagerNoOpUpdateTest.java 72 View chosen = mGlm.findViewByPosition(1);
StaggeredGridLayoutManagerTest.java     [all...]
StaggeredGridLayoutManagerBaseConfigSetTest.java 126 View child0 = mLayoutManager.findViewByPosition(0);
127 View child1 = mLayoutManager.findViewByPosition(mConfig.mOrientation == VERTICAL ? 1
531 final View child = mLayoutManager.findViewByPosition(target.mPosition);
584 view = mLayoutManager.findViewByPosition(position);
610 view = mLayoutManager.findViewByPosition(position);
638 final View child = mLayoutManager.findViewByPosition(target.mPosition);
    [all...]
AsyncListUtilLayoutTest.java 179 View child = mLayoutManager.findViewByPosition(i);
RecyclerViewLayoutTest.java     [all...]
LinearLayoutManagerBaseConfigSetTest.java 126 final View child = mLayoutManager.findViewByPosition(target.mPosition);
  /frameworks/support/car/src/androidTest/java/androidx/car/widget/
DividerVisibilityManagerTest.java 202 .findViewByPosition(0).getBottom();
204 .findViewByPosition(1).getTop();
TextListItemTest.java 373 assertThat((double) layoutManager.findViewByPosition(i).getHeight(),
403 assertThat(layoutManager.findViewByPosition(i).getHeight(),
    [all...]
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
GridLayoutManager.java 222 View targetView = findViewByPosition(getTargetPosition());
321 View v = findViewByPosition(pos);
388 View v = findViewByPosition(getTargetPosition());
    [all...]
BaseGridView.java     [all...]
GuidedActionsStylist.java     [all...]
  /frameworks/base/core/java/com/android/internal/widget/
LinearLayoutManager.java 388 public View findViewByPosition(int position) {
402 return super.findViewByPosition(position);
519 final View existing = findViewByPosition(mPendingScrollPosition);
    [all...]
RecyclerView.java     [all...]
  /frameworks/support/v7/recyclerview/src/main/java/androidx/recyclerview/widget/
LinearLayoutManager.java 400 public View findViewByPosition(int position) {
414 return super.findViewByPosition(position);
548 final View existing = findViewByPosition(mPendingScrollPosition);
    [all...]
StaggeredGridLayoutManager.java     [all...]
RecyclerView.java     [all...]
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/picker/
Picker.java 365 item = column.getLayoutManager().findViewByPosition(i);

Completed in 1220 milliseconds