之前用RecyclerView的时候,一直没有注意,RecyclerView的item布局文件里面设置的根视图属性,在父布局无效的。
今天,在item文件里面的,有点的控件应该是
android:layout_width="match_parent"
但是却表现为:
android:layout_width="wrap_content"
从网上查了查,在相应的Adapter中,这样设置:
//View cellView = layoutInflater.inflate(R.layout.cell_item,null);//这个布局管理器通过一个xml文件,实例化一个根视图
View cellView = layoutInflater.from(ctxt).inflate(R.layout.cell_item, parent, false);
用下面的那个。
代码利用问题,不再深究。