android: data binding error: cannot find symbol class

后端 未结 26 2989
生来不讨喜
生来不讨喜 2020-12-14 05:49

I am getting started for using DataBinding feature. I am facing problem with it.

Error:(21, 9) error: cannot find symbol class ContactL

26条回答
  •  粉色の甜心
    2020-12-14 05:52

    your model just have getter and setter in androidX. else not find your model in view and show this bug

    public class User {
    
    String name;
    
    public String getName() {
        return name;
    }
    public User(String name) {
        this.name = name;
    }
    

    }

提交回复
热议问题