最近使用RecyclerView 每次绘制的item 虽然写的是填充父控件,但是每次效果都是包裹内容。没有填满手机屏幕
解决方法:
将: LayoutInflater.from(context).inflate(R.layout.home_page_itme, null);
改成: LayoutInflater.from(context).inflate(R.layout.home_page_itme, parent,false);
事情的原因:
有时间再把原理补上~
最近使用RecyclerView 每次绘制的item 虽然写的是填充父控件,但是每次效果都是包裹内容。没有填满手机屏幕
解决方法:
将: LayoutInflater.from(context).inflate(R.layout.home_page_itme, null);
改成: LayoutInflater.from(context).inflate(R.layout.home_page_itme, parent,false);
事情的原因:
有时间再把原理补上~