No adapter attached; skipping layout导致RecycleView数据为空时与CoordinatorLayout不发生联动

当RecycleView数据为空时,与CoordinatorLayout并不发生联动,各种请况都尝试了,还有RecycleView的height也设置match_parent还是不管用,想着是不是滑动冲突了呢,结果试了之后没变化,就看Logcat日志信息,结果看到No adapter attached; skipping layout,

因为recyclerview很灵活,支持纵向的横向的列表,还支持网格式布局、瀑布流布局......等等众多样式。你如果不给她指定一个布局,就想让她显示,她会很为难的(⊙o⊙)~。

so:setAdapter 要在setLayoutManager之后

     mRecyclerview = view.findViewById(R.id.rv_my_fans_list);
        tvNomodata = view.findViewById(R.id.tv_nomodata);
//        srMyFans.setRefreshing(false);
        mRecyclerview.setLayoutManager(new GridLayoutManager(getActivity(), 2));
        if (creatorShopBean1LieAdapter == null) {
            creatorShopBean1LieAdapter = new CreatorShopBean1LieAdapter(data);
        }
        mRecyclerview.setAdapter(creatorShopBean1LieAdapter);

这样就解决了,不会报No adapter attached; skipping layout,并且也可以联动了。

你可能感兴趣的:(No adapter attached; skipping layout导致RecycleView数据为空时与CoordinatorLayout不发生联动)