avast / android-butterknife-zelezny

Android Studio plug-in for generating ButterKnife injections from selected layout XML.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Is there any comparision between butterknife and findViewById ,is butterknife affect the load time?

Aeiric opened this issue · comments

This is a topic for https://github.com/JakeWharton/butterknife not for this project.

Anyway, it doesn't affect load time.
Butterknife generates code to omit the findViewById() boilerplate,
it generates calls to findViewById(): (T) view.findViewById(id)
Check https://github.com/JakeWharton/butterknife/blob/master/butterknife/src/main/java/butterknife/ButterKnife.java for more details.

Butterknife might affect compile time since it generates code during compile time.