Skip to content

Instantly share code, notes, and snippets.

@adhamenaya
Created April 10, 2016 22:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adhamenaya/80941d8008fcdf666c75c7a4166be760 to your computer and use it in GitHub Desktop.
Save adhamenaya/80941d8008fcdf666c75c7a4166be760 to your computer and use it in GitHub Desktop.
class MainActivity extends Activity{
@Bind(R.id.text_view_name) TextView mTextViewName;
@Override
public void onCreate(Bundle savedInstance){
super.onCreate(savedInstance);
setContentView(R.layout.activity_main);
ButterKnife.bind(this);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment