Just be aware the only Activities and Fragments ca...
# android
b
Just be aware the only Activities and Fragments cache the view lookups so if you do
itemView.myView
it is calling
itemView.findViewById()
every time (as posted a few days ago https://youtrack.jetbrains.com/issue/KT-10542)
☝️ 2