天天看点

“RecyclerView item 宽度没有填充屏幕”的问题

2种解决情况:

1:

“RecyclerView item 宽度没有填充屏幕”的问题

将图中位置:

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

或者

LayoutInflater.from(context).inflate(R.layout.home_page_itme, null,false);或者别的什么。

改成:

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

2:

在item布局外面嵌套一层RelativeLayout:

“RecyclerView item 宽度没有填充屏幕”的问题

这应该会解决99%的该类问题,解决方案来自网络。