所以我在NestedScrollView
中有一个RecyClerView
。当我说回收视图. scrollToPoence(X)
或回收视图.getLayoutManager().scrollToPoence(X)
时,它根本不起作用。
如果我从nestedScrollView
中移动回收视图
,它可以正常工作,但我不能这样做,因为布局结构!有什么想法吗?
scrollingView.requestChildFocus(recyclerView,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);