When using the new viewbinding, how can I create a ViewBinding for the root view similar to how data...
v
When using the new viewbinding, how can I create a ViewBinding for the root view similar to how databinding does it below?
Copy code
val viewDataBinding: T = DataBindingUtil.bind(itemView)
j
You can call
TheBinding.bind(itemView)