View injection class which runs at runtime rather than compile time like ButterKnife. The benefit to this is there's no generated code which some IDEs (such as Eclipse) fail to generate properly and can often lead to broken references.
Also contains an onClick annotation.
Useage:
// View inject for variable
@InjectView(R.id.view_id) private View view;
@InjectView(id = "view_id") private View view; // use this in libraries because IDs are not constant