0

Does using ButterKnife.findById() offer any sort of performance increase over using findViewById()? I'm guessing no--and this it's made for simplification of code only.

DmitryArc
  • 4,757
  • 2
  • 37
  • 42
Nxt3
  • 1,970
  • 4
  • 30
  • 52

1 Answers1

4

If you have a look at the source code it just does the type cast for you. So it's cleaner, but no less performant

return (T) view.findViewById(id);
keith
  • 3,105
  • 2
  • 29
  • 34