Can't resolve Android databinding class

前端 未结 23 2231
南旧
南旧 2020-12-02 19:55

While using data binding , I am not able to get class MainActivityBinding as per Data Binding Guide

My layout name is activity_main.xml. I

23条回答
  •  一向
    一向 (楼主)
    2020-12-02 20:24

    I had the same problem after changing the package name of my source, after I tried a lot of things (including mentioned here), I solved the problem by importing the databinding class manually:

    import com.domain.my.databinding.MyActivityBinding;
    

提交回复
热议问题