Skip to content

Instantly share code, notes, and snippets.

@pollux-
Last active December 21, 2016 07:46
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 pollux-/4ab7f4c502105b8fd2909bd320d01686 to your computer and use it in GitHub Desktop.
Save pollux-/4ab7f4c502105b8fd2909bd320d01686 to your computer and use it in GitHub Desktop.
public class DualProgressView extends View {
public DualProgressView(Context context) {
super(context);
}
public DualProgressView(Context context, AttributeSet attrs) {
super(context, attrs);
}
public DualProgressView(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
@Override
protected void onDraw(Canvas canvas) {
super.onDraw(canvas);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
}
@Override
protected void onAttachedToWindow() {
super.onAttachedToWindow();
}
@Override
protected void onDetachedFromWindow() {
super.onDetachedFromWindow();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment