Skip to content

Instantly share code, notes, and snippets.

@sigmadeltasoftware
Created February 2, 2017 22:18
Show Gist options
  • Save sigmadeltasoftware/4f01fe0fafafc59de95d4e766f8949c0 to your computer and use it in GitHub Desktop.
Save sigmadeltasoftware/4f01fe0fafafc59de95d4e766f8949c0 to your computer and use it in GitHub Desktop.
DoubleTapSeekBar initial implementation
package com.sigmadelta.verticaldoubletapseekbar;
import android.content.Context;
import android.util.AttributeSet;
import android.widget.SeekBar;
public class DoubleTapSeekBar extends SeekBar {
public DoubleTapSeekBar(Context context) {
super(context);
}
public DoubleTapSeekBar(Context context, AttributeSet attrs) {
super(context, attrs);
}
public DoubleTapSeekBar(Context context, AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
public DoubleTapSeekBar(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment