35

在视图寻呼机中,我有几个片段,其中一个使用带有标题和 recyclerview 的嵌套滚动视图:

<android.support.v4.widget.NestedScrollView
    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:id="@+id/scrollview"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fillViewport="true"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
    tools:context="com.m360.android.fragment.Members.MemberDetailsFragment">

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

        <header/>

        <android.support.v7.widget.RecyclerView
            android:id="@+id/recycler"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:clipToPadding="false"
            android:paddingTop="0dp" />

    </LinearLayout>

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

标签“header”代表了一个复杂的布局,我不想在这里发布它,因为它会大量扩展代码。

当我在选项卡之间切换时,它会滚动到回收站视图。标题是隐藏的,我必须向上滚动才能看到它。

关于是什么原因的任何想法?如果可以避免的话,我不想在适配器中使用类型。

4

2 回答 2

30

我们也有类似的问题。我们有一个垂直的RecyclerView. 这个垂直的每个项目都RecyclerView包含一个水平的RecyclerView,就像在 Android TV 应用中一样。

当我们将支持库从 23.4.0 升级到 24.0.0 时,自动滚动突然出现。特别是,当我们打开一个Activity然后返回时,垂直RecyclerView向上滚动,这样当前的水平RecyclerView行就不会被剪切,并且该行完全显示出来。

添加android:descendantFocusability="blocksDescendants"解决了这个问题。

但是,我找到了另一种解决方案,它也有效。在我们的例子中,垂直RecyclerView线包含在 aFrameLayout中。如果我添加android:focusableInTouchMode="true"到这个FrameLayout,问题就消失了。

这里甚至提到了第三种解决方案,它基本上包括调用setFocusable(false)child/inner RecyclerViews。这个我没试过。

顺便说一句,AOSP 上有一个未解决的问题

于 2016-11-08T17:37:04.537 回答
9

为子布局设置android:focusableInTouchMode="true"(可能是LinearLayoutNestedScrollView

于 2017-12-07T07:15:35.527 回答