Can't resolve Android databinding class

前端 未结 23 2284
南旧
南旧 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:40

    I was facing the same issue,

    If your XML name is activity_main.xml than DataBinding class name will be ActivityMainBinding

    If it is correct check if you add below code in your xml file,

    
    
    
        
       />
    
    
    

    if either method is not the issue, try

    • clean project
    • Rebuild project

提交回复
热议问题