Skip to content

Instantly share code, notes, and snippets.

@adam-hurwitz
Created August 23, 2017 04:58
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 adam-hurwitz/3b656ceadad876e273f2435487c34ae2 to your computer and use it in GitHub Desktop.
Save adam-hurwitz/3b656ceadad876e273f2435487c34ae2 to your computer and use it in GitHub Desktop.
RippleTextView constructors
public class RippleTextView extends AppCompatTextView {
public RippleTextView(Context context) {
super(context);
}
public RippleTextView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public RippleTextView(Context context, AttributeSet attrs,
int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment