RecyclerView 的item显示的间距过大(item占满父布局)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了RecyclerView 的item显示的间距过大(item占满父布局)相关的知识,希望对你有一定的参考价值。
参考技术A 先上我的不符合预期的界面图:图一为界面一刚刚打开,显示item信息 name:smartDisplay_n
图二为向下滑动一定距离,item显示item的操作,显示item的name:OxiEasy W60
图三为完全显示name:OxiEasy W60的item
这是看回我item的布局文件,发现
<?xml version = "1.0" encoding = "UTF-8"?>
<LinearLayout xmlns:android=" http://schemas.android.com/apk/res/android "
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
。。。
</LinearLayout>
item的根部局的高度属性是 match_parent,
哇~~心态炸了
这里就是不能达到预期效果图的原因所在,把属性换为 wrap_content。看图:
emm,记录一下~~谢谢参考的链接
参考 https://blog.csdn.net/wenghaoduan/article/details/78512435
以上是关于RecyclerView 的item显示的间距过大(item占满父布局)的主要内容,如果未能解决你的问题,请参考以下文章