Back to project page lamp.
The source code is released under:
GNU General Public License
If you think the Android project lamp listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package cz.tomsuch.lampicka.abstracts; //from w w w . j av a 2 s . c om import android.content.Context; import android.util.AttributeSet; import android.widget.SeekBar; public abstract class CustomSeekBar extends SeekBar { public CustomSeekBar(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } public CustomSeekBar(Context context, AttributeSet attrs) { super(context, attrs); } public CustomSeekBar(Context context) { super(context); } public abstract void setProgressAndThumb(int progress); }