在一个视图寻呼机中,我有几个片段,其中一个片段使用带有标题的嵌套滚动视图和一个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”表示我不想在此处发布的复杂布局,因为它会大量延伸代码。
当我在标签之间切换时,它会将海峡滚动到回收站视图。标题是隐藏的,我必须向上滚动才能看到它。
关于导致这种情况的任何想法?如果可以避免,我不想在我的适配器中使用类型。
答案 0 :(得分:17)
我们遇到了类似的问题。我们有一个垂直RecyclerView
。此垂直RecyclerView
的每个项目都包含水平RecyclerView
,就像在Android TV应用中一样。
当我们将支持库从23.4.0升级到24.0.0时,突然出现了自动滚动。特别是,当我们打开Activity
然后我们返回时,垂直RecyclerView
向上滚动,以便当前水平RecyclerView
行不会被切断并且行完全显示。 / p>
添加android:descendantFocusability="blocksDescendants"
可解决此问题。
但是,我找到another solution,这也有效。在我们的例子中,垂直RecyclerView
包含在FrameLayout
中。如果我将android:focusableInTouchMode="true"
添加到此FrameLayout
,则问题就会消失。
甚至还有一个third solution mentioned here,它基本上是在子/内setFocusable(false)
上调用RecyclerView
。我没试过这个。
顺便说一下,有open issue on the AOSP。
答案 1 :(得分:2)
为android:focusableInTouchMode="true"
LinearLayout
)设置NestedScrollView