美文网首页
Android ScrollView 嵌套 RecyclerVi

Android ScrollView 嵌套 RecyclerVi

作者: _发强 | 来源:发表于2021-08-12 21:26 被阅读0次

ScrollView 中如果直接套用 RecyclerView 的话,会导致 RecyclerView 显示不全。

RecyclerView 的关键设置为:
android:nestedScrollingEnabled="false"

<androidx.core.widget.NestedScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:scrollbars="none">

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

            <androidx.recyclerview.widget.RecyclerView
                android:layout_width="match_parent"
                android:nestedScrollingEnabled="false"
                android:layout_height="match_parent" />
        </LinearLayout>
</androidx.core.widget.NestedScrollView>

相关文章

网友评论

      本文标题:Android ScrollView 嵌套 RecyclerVi

      本文链接:https://www.haomeiwen.com/subject/jxrrbltx.html