Recyclerview not call onCreateViewHolder

前端 未结 30 1368
离开以前
离开以前 2020-11-28 07:04

My RecyclerView does not call onCreateViewHolder, onBindViewHolder even MenuViewHolder constructor, therefore nothing app

30条回答
  •  醉梦人生
    2020-11-28 07:50

    In my case , I was missing calling notifyDataSetChanged() after setting list in adapter.

    public void setUserList(List userList) {
          this.userList = userList;
            notifyDataSetChanged();
    }
    

提交回复
热议问题