gpt4 book ai didi

android - 垂直 ScrollView 内的水平 RecyclerView

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:25:30 25 4
gpt4 key购买 nike

所以我在垂直 ScrollView 中有一个水平 RecyclerView。我的布局中的所有内容都显示良好,并且都按我想要的方向滚动,并且运行顺利。

我遇到的唯一问题是,RecyclerView 在 ScrollView 中的一些其他内容下方,当 RecyclerView 部分可见时,它会在启动时将 RecyclerView 的底部与屏幕底部对齐。这意味着 RecyclerView 上方的内容被推离屏幕。

有谁知道为什么会这样,我该如何解决?

这是一个简单的布局,可以完成我刚才描述的内容。您甚至不需要填充 RecyclerView,它仍然会这样做。

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

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

<LinearLayout
android:layout_width="match_parent"
android:layout_height="500dp"
android:background="#fff"/>

<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="#000"/>

</LinearLayout>

</ScrollView>

最佳答案

原来这个问题是在此处报告给谷歌的 Issue - 81854

根据 Google 的说法,它正在按预期工作。问题在于 RecyclerView 将 focusableInTouchMode 设置为 true。为了解决这个问题,我在 ScrollView 的最顶层 View 上将 focusableInTouchModefocusable 设置为 true。

以下是我在原始问题中提供的代码示例的修复:

<?xml version="1.0" encoding="utf-8"?>
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">

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

<LinearLayout
android:layout_width="match_parent"
android:layout_height="500dp"
android:background="#fff"
android:focusableInTouchMode="true"
android:focusable="true"/>

<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="200dp"
android:background="#000"/>

</LinearLayout>

</ScrollView>

关于android - 垂直 ScrollView 内的水平 RecyclerView,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32394115/

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