1. 程式人生 > >“RecyclerView item 寬度沒有填充螢幕”的問題

“RecyclerView item 寬度沒有填充螢幕”的問題

2種解決情況:

1

將圖中位置:

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:

這應該會解決99%的該類問題,解決方案來自網路。