You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 26, 2023. It is now read-only.
When having a View injected (@ViewById) and also ataching an ItemClick Listener (@ItemClick), the findViewById method is called twice in the generated afterSetContentView_ method.
The downside is that findViewById is not a very cheap method, is it?
Example:
Class:
public class Class{
...
@ViewById
protected View placesList;
@ItemClick(R.id.placesList)
public void editPlace(Place place){}
...
}