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.util; //from w ww. j av a2 s . c om import android.content.Context; import android.graphics.Canvas; import android.util.AttributeSet; import android.view.MotionEvent; import cz.tomsuch.lampicka.abstracts.CustomSeekBar; public class VerticalSeekBar extends CustomSeekBar { public VerticalSeekBar(Context context) { super(context); } public VerticalSeekBar(Context context, AttributeSet attrs, int defStyle) { super(context, attrs, defStyle); } public VerticalSeekBar(Context context, AttributeSet attrs) { super(context, attrs); } protected void onSizeChanged(int w, int h, int oldw, int oldh) { super.onSizeChanged(h, w, oldh, oldw); } @Override protected synchronized void onMeasure(int widthMeasureSpec, int heightMeasureSpec) { super.onMeasure(heightMeasureSpec, widthMeasureSpec); setMeasuredDimension(getMeasuredHeight(), getMeasuredWidth()); } protected void onDraw(Canvas c) { c.rotate(-90); c.translate(-getHeight(), 0); super.onDraw(c); } public synchronized void setProgressAndThumb(int progress) { setProgress(getMax() - (getMax() - progress)); onSizeChanged(getWidth(), getHeight(), 0, 0); } @Override public boolean onTouchEvent(MotionEvent event) { if (!isEnabled()) { return false; } if (getParent() != null) { getParent().requestDisallowInterceptTouchEvent(true); } switch (event.getAction()) { case MotionEvent.ACTION_DOWN: case MotionEvent.ACTION_MOVE: case MotionEvent.ACTION_UP: int i = 0; i = getMax() - (int) (getMax() * event.getY() / getHeight()); setProgress(i); onSizeChanged(getWidth(), getHeight(), 0, 0); break; case MotionEvent.ACTION_CANCEL: break; } return true; } }