美文网首页
scrollView嵌套recyclerView 显示不全

scrollView嵌套recyclerView 显示不全

作者: 5fd428755eb1 | 来源:发表于2017-11-07 14:49 被阅读0次

scrollView嵌套recyclerView 显示不全可以将recyclerView使用RelativeLayout包起来,就可以全部撑开

android:layout_width="match_parent"

android:layout_height="wrap_content">

android:id="@+id/recyclerview"

android:layout_width="match_parent"

android:layout_height="wrap_content"

android:layout_gravity="center"

android:layout_marginBottom="15dp"

android:layout_marginTop="15dp"/>

recyclerView设置不能滑动:

recyclerView.setNestedScrollingEnabled(false);

相关文章

网友评论

      本文标题:scrollView嵌套recyclerView 显示不全

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