美文网首页
RecyclerView item 宽度没有填充屏幕

RecyclerView item 宽度没有填充屏幕

作者: 比萨u | 来源:发表于2016-12-20 17:22 被阅读783次

最近使用RecyclerView 每次绘制的item 虽然写的是填充父控件,但是每次效果都是包裹内容。没有填满手机屏幕

解决方法:

将:   LayoutInflater.from(context).inflate(R.layout.home_page_itme, null);
改成: LayoutInflater.from(context).inflate(R.layout.home_page_itme, parent,false);
Paste_Image.png

事情的原因:
有时间再把原理补上~

相关文章

网友评论

      本文标题:RecyclerView item 宽度没有填充屏幕

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