RecyclerView item 宽度没有填充屏幕
2016-12-20 本文已影响783人
比萨u
最近使用RecyclerView 每次绘制的item 虽然写的是填充父控件,但是每次效果都是包裹内容。没有填满手机屏幕
解决方法:
将: LayoutInflater.from(context).inflate(R.layout.home_page_itme, null);
改成: LayoutInflater.from(context).inflate(R.layout.home_page_itme, parent,false);
![](https://img.haomeiwen.com/i1981845/b68dc2ca380dce44.png)
事情的原因:
有时间再把原理补上~