尝试从空对象引用中读取字段“ android.support.v7.widget.RecyclerView”

时间:2019-02-08 10:12:11

标签: java android

DataBindingUtil.inflate始终返回null,错误为

  

尝试从空对象引用中读取字段“ android.support.v7.widget.RecyclerView com.hkapps.wallpaperbase.databinding.FragmentFavouriteBinding.recyclerView”

@Override
public View onCreateView(LayoutInflater layoutInflater, ViewGroup viewGroup, Bundle bundle) {
    super.onCreateView(layoutInflater,viewGroup, bundle);
    this.binding = DataBindingUtil.inflate(layoutInflater,
            R.layout.fragment_favourite,
            viewGroup,
            true);
    initObjects();
    initRecyclerView();
    return this.binding.getRoot();
}

you can see picture of debug mode in android studio

0 个答案:

没有答案