gpt4 book ai didi

android - NestedScrollView 内的 RecyclerView 中的 SmoothScrollTo 项目

转载 作者:行者123 更新时间:2023-11-30 05:07:35 24 4
gpt4 key购买 nike

这是我的布局:

<android.support.v4.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:id="@+id/nsvRoot"
app:layout_behavior="@string/appbar_scrolling_view_behavior">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:descendantFocusability="blocksDescendants"
android:orientation="vertical">


<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">

<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="8dp"
app:cardCornerRadius="0dp"
app:cardElevation="4dp">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<More_Child_Views/>
</LinearLayout>
</android.support.v7.widget.CardView>

<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
app:cardCornerRadius="0dp"
app:cardElevation="4dp">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<More_Child_Views/>
</LinearLayout>
</android.support.v7.widget.CardView>

<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="8dp"
android:layout_marginBottom="8dp"
app:cardElevation="4dp">

<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">


<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">

<android.support.v7.widget.RecyclerView
android:id="@+id/rvItems"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

</LinearLayout>
</LinearLayout>
</android.support.v7.widget.CardView>
</LinearLayout>

</LinearLayout>

在这个布局的底部有一个RecyclerView,id为rvItems

我希望根 NestedScrollView 滚动到此 Recyclerview 中特定项目的位置。

我试过了:

rvItems.getChildAt(itemIndex).getY();

但是 childAt(itemIndex) 返回 nullrvItems.getItemCount() 返回 0,即使有在回收站 View 中显示了 15 件以上的元素。

我认为这是由于 NestedScrollView 作为 RecyclerView 的父级。如何滚动到项目在 recyclerView 中的位置?

最佳答案

一些笔记

请向我们展示您如何声明/设置您的适配器和回收器 View 。还要检查方法调用的顺序。 (例如,在将其传递给 recyclerview 之前先设置适配器)。

什么可以解决这个问题

recyclerView.getLayoutManager().scrollToPosition(10); // 10 being the position of the item

阅读更多

关于android - NestedScrollView 内的 RecyclerView 中的 SmoothScrollTo 项目,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54288240/

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