笔记 RecyclerView显示Item布局错乱、不一致解决办法

https://blog.csdn.net/baopengjian/article/details/79724701

 

问题
RecyclerView显示Item布局错乱、不一致解决办法,xml预览效果和实际运行相差很大

解决:
Adapter中改:

    View view = View.inflat(context,R.layout.item,null)

LayoutInflater inflater = LayoutInflater.from(context);
View view = inflater.inflate(R.layout.item,parent,flase);
//注意false
--------------------- 
 

你可能感兴趣的:(笔记 RecyclerView显示Item布局错乱、不一致解决办法)