Programming Java, we need to use findViewById function to access a view item, nowadays in Kotlin we simply use id for accessing view item, like if we have a textView with id "myTxt" we simply use myTxt.text = "Some Text"
In the other hand using findViewById function in Java would led to less efficient performance, so we're suggested to use binding view for performance improvements
now the question is:
Now that we do not use
findViewByIdin kotlin, should we use binding, or this won't cause any efficiency in performance?