A while ago I’ve read somewhere that `View Holder`...
# android
g
A while ago I’ve read somewhere that
View Holder
shouldn’t be an
inner class
. I don’t remember where I read it, but I don’t see any problem with making
ViewHolder
an
inner class
. Any thoughts on this?
g
inner class is just a source of leaks and sign of too coupled code
👍 2
g
I see. Because they are equivalent of non-static nested classes in Java