Error using databinding in android

后端 未结 12 886
情深已故
情深已故 2020-12-16 09:45

I am trying to test data binding as given in the guide here. I have included this in my build.gradle file (of module app) :

compileSdkVersion \'android-MNC\         


        
12条回答
  •  一向
    一向 (楼主)
    2020-12-16 10:26

    You may have a problem or mismatch between your model and your layout file. In my case I had:

    ...
    
    

    but my model class was like so:

    public class MyContact {
        public String name;
        public String cellphoneNumber; // <-- Notice the lowercase 'p'
    }
    

提交回复
热议问题