gpt4 book ai didi

Android- ScrollView 和水平回收 View 之间的滑动冲突

转载 作者:行者123 更新时间:2023-11-30 00:00:59 29 4
gpt4 key购买 nike

我遇到了 ScrollView 和水平回收器 View 之间的滚动问题。在 fragment 中,有一个 ScrollView 包装 2 个水平回收器 View 。有时想滑动回收 View ,但系统也检测不到,它会触发 ScrollView 向上或向下滑动。我很难滚动回收站 View 。下图

enter image description here

    <ScrollView
android:descendantFocusability="beforeDescendants"
android:id="@+id/scrollView"
android:layout_width="fill_parent"
android:layout_height="fill_parent">


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


<ImageView
android:layout_width="125dp"
android:layout_height="50dp"
android:layout_gravity="center"
android:layout_marginTop="5dp"
android:src="@drawable/logo" />

<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@color/gray" />


<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:layout_marginTop="20dp"
android:layout_weight="1"
android:fontFamily="@font/roboto_condensed_regular"
android:text="Journals"
android:textColor="@color/v2_text_color"
android:textSize="18sp"
android:textStyle="bold" />

<View
android:layout_width="25dp"
android:layout_height="1dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="5dp"
android:background="@color/v2_text_color" />

<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:descendantFocusability="afterDescendants"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:scrollbars="horizontal" />


<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:layout_marginTop="15dp"
android:fontFamily="@font/roboto_condensed_regular"
android:text="Editor's Pick"
android:textColor="@color/v2_text_color"
android:textSize="18sp"
android:textStyle="bold" />

<View
android:layout_width="25dp"
android:layout_height="1dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="5dp"
android:background="@color/v2_text_color" />


<android.support.v7.widget.RecyclerView
android:id="@+id/editorRecyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:descendantFocusability="afterDescendants"
android:scrollbars="horizontal" />



<Button
android:id="@+id/tv_showMore"
style="?android:attr/borderlessButtonStyle"
android:layout_width="110dp"
android:layout_height="35dp"
android:layout_gravity="center"
android:layout_marginBottom="15dp"
android:layout_marginTop="30dp"
android:background="@drawable/white_rounded_button"
android:text="Show All"
android:textAllCaps="false"
android:textColor="#696969" />


</LinearLayout>


</ScrollView>

最佳答案

使用 android.support.v4.widget.NestedScrollView 而不是 ScrollView

并将 android:nestedScrollingEnabled="false" 用于您的 RecyclerView

像这样改变你的布局

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:fitsSystemWindows="true"
android:descendantFocusability="beforeDescendants">


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


<ImageView
android:layout_width="125dp"
android:layout_height="50dp"
android:layout_gravity="center"
android:layout_marginTop="5dp"
android:src="@drawable/logo" />

<View
android:layout_width="match_parent"
android:layout_height="1dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:background="@color/gray" />


<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:layout_marginTop="20dp"
android:layout_weight="1"
android:fontFamily="@font/roboto_condensed_regular"
android:text="Journals"
android:textColor="@color/v2_text_color"
android:textSize="18sp"
android:textStyle="bold" />

<View
android:layout_width="25dp"
android:layout_height="1dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="5dp"
android:background="@color/v2_text_color" />

<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:descendantFocusability="afterDescendants"
android:nestedScrollingEnabled="false"
android:scrollbars="horizontal" />


<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="16dp"
android:layout_marginTop="15dp"
android:fontFamily="@font/roboto_condensed_regular"
android:text="Editor's Pick"
android:textColor="@color/v2_text_color"
android:textSize="18sp"
android:textStyle="bold" />

<View
android:layout_width="25dp"
android:layout_height="1dp"
android:layout_marginLeft="16dp"
android:layout_marginTop="5dp"
android:background="@color/v2_text_color" />


<android.support.v7.widget.RecyclerView
android:id="@+id/editorRecyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="10dp"
android:descendantFocusability="afterDescendants"
android:nestedScrollingEnabled="false"
android:scrollbars="horizontal" />


<Button
android:id="@+id/tv_showMore"
style="?android:attr/borderlessButtonStyle"
android:layout_width="110dp"
android:layout_height="35dp"
android:layout_gravity="center"
android:layout_marginBottom="15dp"
android:layout_marginTop="30dp"
android:background="@drawable/white_rounded_button"
android:text="Show All"
android:textAllCaps="false"
android:textColor="#696969" />


</LinearLayout>


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

关于Android- ScrollView 和水平回收 View 之间的滑动冲突,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49914797/

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