Android ScrollView嵌套RecyclerView

Android ScrollView嵌套RecyclerView,第1张

概述在开发中经常遇到ScrollView嵌套RecyclerView的页面,但是,会冲突!滑动冲突。今天呢就告诉大家怎末解决。 <android.support.v4.widget.NestedScrollViewandroid:layout_width="match_parent"android:scrollbars="none"android:layout_height= 在开发中经常遇到ScrollVIEw嵌套RecyclerVIEw的页面,但是,会冲突!滑动冲突。今天呢就告诉大家怎末解决。

 

    <androID.support.v4.Widget.nestedScrollVIEw        androID:layout_wIDth="match_parent"        androID:scrollbars="none"        androID:layout_height="match_parent">        <linearLayout            androID:orIEntation="vertical"            androID:layout_wIDth="match_parent"            androID:layout_height="wrap_content">                <ImageVIEw                    androID:src="@drawable/icon_app"                    androID:layout_margintop="@dimen/vIEw_space_12"                    androID:layout_wIDth="@dimen/vIEw_height_96"                    androID:layout_gravity="center"                    androID:layout_height="@dimen/vIEw_height_96">                </ImageVIEw>                <TextVIEw                    androID:text="相对人备案"                    androID:textStyle="bold"                    androID:layout_margintop="@dimen/vIEw_space_4"                    androID:textSize="@dimen/text_size_18"                    androID:textcolor="@color/colorBlack"                    androID:layout_wIDth="wrap_content"                    androID:layout_gravity="center"                    androID:layout_height="wrap_content">                </TextVIEw>            <androID.support.v7.Widget.RecyclerVIEw                androID:ID="@+ID/recyclervIEw"                androID:layout_margintop="@dimen/vIEw_space_12"                androID:layout_wIDth="match_parent"                androID:layout_height="match_parent">            </androID.support.v7.Widget.RecyclerVIEw>        </linearLayout>    </androID.support.v4.Widget.nestedScrollVIEw>@H_502_9@

替换ScrollVIEw为nestedScrollVIEw!!!

总结

以上是内存溢出为你收集整理的Android ScrollView嵌套RecyclerView全部内容,希望文章能够帮你解决Android ScrollView嵌套RecyclerView所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1059329.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-25
下一篇 2022-05-25

发表评论

登录后才能评论

评论列表(0条)

保存