gpt4 book ai didi

java - Android RecyclerView 滚动并将项目置于顶部

转载 作者:行者123 更新时间:2023-12-01 08:58:07 26 4
gpt4 key购买 nike

我不确定这对于 RecyclerView 是否很难做到,我认为有一种简单的方法可以做到这一点,但我遇到了一些困难。我在 Activity 上有一个 RecyclerView,当我转到该 Activity 时,我希望它滚动到一个项目。看起来足够好了。然而,我的问题是,假设一次只能在屏幕上显示 5 个项目,而我们有 6 个项目,并且我们滚动到第 5 个或第 4 个项目,回收器 View 确实滚动了一点点,但看起来并不像它滚动“到”元素​​,因为它受到 RecyclerView 边界的限制。

有没有办法做到这一点,如果我滚动到 RecyclerView 中的第四个或第五个项目,它会将其定位在 View 的顶部,而最后一个项目下方的区域将只是该项目的背景色正常 View ,我可以正常滚动回来吗?我希望我能正确地解释自己。我不确定这是否可以轻松完成,并且我在 XML 设置或代码设置中犯了错误。

<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:visibility="gone">

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">

<include
android:id="@+id/timelineSwitcherView"
layout="@layout/view_timeline_view_switcher"/>

<ViewAnimator
android:id="@+id/viewAnimator"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/timelineSwitcherView">

<RelativeLayout
android:id="@+id/timeLineRelativeLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/lighterBlue">

<android.support.v4.widget.SwipeRefreshLayout
android:id="@+id/timeLineSwipeRefreshLayout"
android:layout_width="match_parent"
android:layout_height="match_parent">

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

</android.support.v4.widget.SwipeRefreshLayout>

</RelativeLayout>

感谢对此的任何帮助和指导。

最佳答案

你应该使用

    mRecyclerview.scrollTo(x,y);
mRecyclerview.scrollToPosition();

或者更好:

    mRecyclerview.smoothScrollBy( x , y);        
mRecyclerview.smoothScrollToPosition(List item position);

所以你需要获取 Y 位置,或者列表中的子位置。

关于java - Android RecyclerView 滚动并将项目置于顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41895497/

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