所以我在 NestedScrollView
中有一个 Recyclerview
。当我说 recycleview.scrollToPosition(X)
或 recycleview.getLayoutManager().scrollToPosition(X)
它根本不起作用。
如果我将 recycleview
从 nestedScrollView
移出,它工作正常,但我不能这样做,因为布局结构!有什么想法吗?
scrollingView.requestChildFocus(recyclerView,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);
我是一名优秀的程序员,十分优秀!