//是这么个问题。
//其实它应该是这样才对:
// 用RecyclerView的时候,RecyclerView的item布局文件里面设置的根视图属性,在父布局无效的。
//在item文件里面的,有点的控件应该是 android:layout_width="match_parent" 最大化。
//但是却表现为: android:layout_width="wrap_content" 包裹自身。
//解决办法是,在相应的Adapter中,这样设置: View inflate = LayoutInflater.from(context).inflate(R.layout.layout_item, parent,false);
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
View inflate = LayoutInflater.from(context).inflate(R.layout.layout_item, parent,false);
ViewHolder holder = new ViewHolder(inflate);
return holder;
}
//---------------------------------------------------------------------完---------------------------------------------------------------------