Skip to content

Instantly share code, notes, and snippets.

@deskid
Created January 8, 2016 16:05
Show Gist options
  • Save deskid/6540978fd64a2fa02975 to your computer and use it in GitHub Desktop.
Save deskid/6540978fd64a2fa02975 to your computer and use it in GitHub Desktop.
public <T extends View> T $(int id) {
return (T) super.findViewById(id);
}
public <T extends View> T $(View view, int id) {
return (T) view.findViewById(id);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment