提问者:小点点

RecyClerView scrollToPoplace不适用于NestedScrollView?无论如何都有吗?


所以我在NestedScrollView中有一个RecyClerView。当我说回收视图. scrollToPoence(X)回收视图.getLayoutManager().scrollToPoence(X)时,它根本不起作用。

如果我从nestedScrollView中移动回收视图,它可以正常工作,但我不能这样做,因为布局结构!有什么想法吗?

scrollingView.requestChildFocus(recyclerView,recyclerView);

尝试了这个,但没有专注于某个位置


共1个答案

匿名用户

让你的回收视图像这样

<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);