Maison > Questions et réponses > le corps du texte
RecyclerView的item中一个LinearLayout中包裹了一个TextView,但是TextView在RecyclerView中显示的始终是Wrap_content,始终不能显示出match_parent的效果
PHP中文网2017-04-17 17:49:42
如果布局文件没错的话,请检查在RecyclerView
的Adapter
中的onCreateViewHolder
方法中是否正确加载布局文件例如:
View view = mLayoutInflater.inflate(R.layout.item, parent, false);