Recyclerview scrollToPosition不能与NestedScrollView一起使用?反正呢?

时间:2017-07-19 12:14:03

标签: android android-recyclerview android-scrollview android-nestedscrollview nestedscrollview

所以我在Recyclerview内有一个NestedScrollView。当我说recycleview.scrollToPosition(X)recycleview.getLayoutManager().scrollToPosition(X)时,它根本不起作用。

如果我从recycleview移出nestedScrollView,它可以正常工作,但由于布局结构,我无法做到这一点!有什么想法吗?

scrollingView.requestChildFocus(recyclerView,recyclerView);

试过这个,但没有关注某个位置

1 个答案:

答案 0 :(得分:3)

像这样制作您的Recyclerview

<LinearLayout
      android:id="@+id/ll2"
      android:focusableInTouchMode="true"
      android:layout_width="match_parent"
      android:layout_height="wrap_content">

          <android.support.v7.widget.RecyclerView
              android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:layout_margin="5dp"
              android:clipToPadding="false"
              android:visibility="visible"/>

</LinearLayout>

和java代码

ItemsArrayList.add(0, items5);
adapter.notifyDataSetChanged();
ViewCompat.setNestedScrollingEnabled(recyclerView,false);
NestedScrollView nestedScrollingView = (NestedScrollView) findViewById(R.id.nestedScrollingView);
LinearLayout linearLayout = (LinearLayout) findViewById(R.id.ll2);
float y = fcRecyclerView.getChildAt(0).getY();
float z =linearLayout.getY();
nestedScrollingView.smoothScrollTo(0, (int) z);