Has any of you encountered a similar memory leak? This is how I\'m handling the VideoView at the moment
@Override protected void onFinishInflate() { supe
When using ButterKnife with Fragments, you need to use the Unbinder in onDestroyView() to correctly dereference the Fragment's Views -- since Fragments have different life cycles to Activities.
Unbinder
onDestroyView()
There is a related issue here.