I added Butterknife
to my project and when I want to search through project files with Ctrl+shift+N
the result contains some junk file (_$$ViewBinder
or $blah blah
) Is it possible to filter this files?
Asked
Active
Viewed 80 times
2

Amir
- 16,067
- 10
- 80
- 119
-
1Those classes are generated to perform the view look-ups and other method/resources/etc bindings. Have a look at that article https://medium.com/@lgvalle/how-butterknife-actually-works-85be0afbc5ab#.fx6gtuowh – NazarK Aug 01 '16 at 12:59
-
1@Nazik thanks for your suggestion. But I think it's possible to remove this file from search result. If you use Android Annotation this file doesn't appear in search result. – Amir Aug 01 '16 at 13:05
-
1@Amir you can hide generates files from a complete search there : http://stackoverflow.com/a/32691872/2667946 – JulienGenoud Sep 15 '16 at 09:41