Error using databinding in android

后端 未结 12 903
情深已故
情深已故 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:33

    // This is under activity_main xml .

      
      
    
    

    // This is Student Class

    public class Student {
    

    public String firstname ; public String lastname ;

    public Student(String firstname , String lastname)
    {
        this.firstname = firstname;
        this.lastname = lastname;
    
    }
    

    }

提交回复
热议问题