gpt4 book ai didi

android - RecyclerView 滚动与 ScrollView 冲突

转载 作者:行者123 更新时间:2023-11-29 14:13:09 26 4
gpt4 key购买 nike

我使用的布局结构类似于 Google Play 应用。但在我的例子中,我有固定的水平 RecyclerView 容器,所以我更喜欢使用 NestedScrollView 作为 Root View 。这是我的布局结构

<NestedScrollView>

<HeaderView />
<RecyclerView />

<HeaderView />
<RecyclerView />

<HeaderView />
<RecyclerView />

</NestedScrollView>

问题在于,当我垂直滚动 NestedScrollView 时,我无法立即停止它并开始滚动 RecyclerView,我需要等一分钟直到滚动停止,移开我的手指,如果它在屏幕上,然后尝试滚动 RecyclerView ,当 RecyclerView 滚动时反之亦然。如何消除滚动冲突以使我的布局像在 Google Play 应用中一样平滑滚动?

最佳答案

我还设计了一个类似于 GooglePlay 应用程序的应用程序。只需按照以下步骤操作:

  1. 将属性 app:layout_behavior="@string/appbar_scrolling_view_behavior" 添加到 android.support.v4.widget.NestedScrollView
  2. 使用 RelativeLayout 作为 android.support.v4.widget.NestedScrollView 的直接子级并添加属性 android:descendantFocusability="blocksDescendants"RelativeLayout
  3. RelativeLayout 中,添加一个垂直的 LinearLayout 作为所有 Header view(TextView) 和 RecyclerView 的容器

这是工作代码的结构。试试这个:

<android.support.design.widget.CoordinatorLayout>

<android.support.design.widget.AppBarLayout />

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

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

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

<!-- Header view -->
<TextView
android:layout_width="match_parent"
android:layout_height="48dp"
android:paddingLeft="16dp"
android:gravity="center_vertical"
android:textSize="14sp"
android:textStyle="bold"
android:fontFamily="sans-serif"
android:textColor="@color/textColorSecondary"
android:text="Header"/>

<android.support.v7.widget.RecyclerView />

<!-- Header view -->
<TextView />

<android.support.v7.widget.RecyclerView />

<!-- Header view -->
<TextView />

<android.support.v7.widget.RecyclerView />

<!-- Header view -->
<TextView />

<android.support.v7.widget.RecyclerView />

<!-- Header view -->
<TextView />

<android.support.v7.widget.RecyclerView />

................
..........................
</LinearLayout>
</RelativeLayout>

</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>

希望对你有帮助~

关于android - RecyclerView 滚动与 ScrollView 冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43054960/

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