RecyclerView子View宽度不能全屏的问题

来源:互联网 发布:淘宝联盟红包很无耻 编辑:程序博客网 时间:2024/06/08 02:26

引用:http://blog.csdn.net/xx753277/article/details/51218255

RecyclerView子View宽度不能全屏的问题,在Adapter的onCreateViewHolder创建子view的时候要把parent传进去; 

正确写法

LayoutInflater.from(context).inflate(R.layout.item_view,parent,false);

错误写法

LayoutInflater.from(context).inflate(R.layout.item_view,null);

1 0