Skip to content

Instantly share code, notes, and snippets.

@patrickhammond
Created August 12, 2014 18:59
Show Gist options
  • Save patrickhammond/a3c51f08321cc5cea20b to your computer and use it in GitHub Desktop.
Save patrickhammond/a3c51f08321cc5cea20b to your computer and use it in GitHub Desktop.
Custom views tricks
public Class CustomView {
public CustomView(Context context, AttributeSet attrs) {
super(context, attrs);
// Makes the developer tools happy when previewing stuff
if (isInEditMode()) {
return;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment