美文网首页
解决RecyclerView布局使用match_parent,i

解决RecyclerView布局使用match_parent,i

作者: 梧桐树biu | 来源:发表于2017-08-22 14:20 被阅读0次

    一.问题解决:

    在adapter的onCreateViewHolder()中做以下处理:

    正常写法:
    View view = View.inflate(parent.getContext(),R.xxx,null);
    修改成:
    View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.xxx,parent,false);
    

    相关文章

      网友评论

          本文标题:解决RecyclerView布局使用match_parent,i

          本文链接:https://www.haomeiwen.com/subject/mckldxtx.html