gpt4 book ai didi

android - Recyclerview scrollToPosition 不适用于 NestedScrollView 吗?到底有没有

转载 作者:太空宇宙 更新时间:2023-11-03 13:44:35 25 4
gpt4 key购买 nike

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

如果我将 recycleviewnestedScrollView 移出,它工作正常,但我不能这样做,因为布局结构!有什么想法吗?

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

关于android - Recyclerview scrollToPosition 不适用于 NestedScrollView 吗?到底有没有,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45190254/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com