Android音量控制设计之ProgressView

效果图

ScreenGif4.gif
  • 可以通过旋转view或者直接拖动来控制进度。
  • 根据旋转角度,音量的移动速度会改变
  • 根据旋转角度,归位时候的速度会改变

实现流程

  1. 重写onMeasure(),使得高度为外部矩形的高度+padding。
  2. 重写onDraw(),绘制两个矩形和一个球。
  3. 重写onTouchEvent()判断是点击小球移动还是旋转控件移动,并且判断点击是控件左半部分还是右半部分,在手指抬起时,执行归为动画。
  4. 设置音量改变接口供外部使用。

使用

记得要在外层Linearlayout中要添加clipChildred=false。。

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical"
    android:clipChildren="false"
    tools:context=".MainActivity">

    <TextView
        android:textSize="14sp"
        android:textColor="#333333"
        android:id="@+id/tv"
        android:gravity="center"
        android:layout_marginTop="100dp"
        android:layout_marginBottom="20dp"
        android:text="音量 :"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
    <com.lsp.ProgressView
        android:id="@+id/voice"
        android:paddingLeft="20dp"
        android:paddingRight="20dp"
        android:layout_width="match_parent"
        android:layout_height="wrap_content" />
</LinearLayout>

代码

public class ProgressView extends View {
    private static final String TAG = "HappyVoiceView";
    /**
     * 外层矩形框画笔
     */
    private Paint outRectPaint;
    /**
     * 内层矩形框画笔
     */
    private Paint innerRectPaint;
    /**
     * 音量控制球画笔
     */
    private Paint ballPaint;
    /**
     * 外层,内层,球的矩形范围
     */
    private RectF rectF1, rectF2, ballRect;
    /**
     * 外层矩形高度
     */
    private int outRectHeight = 50;
    /**
     * 内层矩形框画笔
     */
    private int innerRectHeight = 20;
    /**
     * 小球的半径
     */
    private int circleRadius = 15;
    /**
     * 内层小球可移动范围
     */
    private int length = 0;
    /**
     * 是否是旋转控件
     */
    private boolean doRoate = false;
    /**
     * 竖直方向偏移
     */
    private float downY;
    /**
     * 角度
     */
    private int degress = 0;
    /**
     * 手指抬起归位
     */
    private ValueAnimator valueAnimator;
    /**
     * 小球当前位置
     */
    private int ballCurrentLength = 0;
    /**
     * 从左面旋转控件
     */
    private boolean isTouchLeft = false;
    /**
     * 从右面面旋转控件
     */
    private boolean isTouchBall = false;
    /**
     * 小球移动最终速度
     */
    private int speed = 1;
    /**
     * 小球最小速度
     */
    private int minSpeed = 2;
    /**
     * 音量改变监听
     */
    private OnVoiceUpdateLinstener voiceUpdateLinstener;

    public void setVoiceUpdateLinstener(OnVoiceUpdateLinstener voiceUpdateLinstener) {
        this.voiceUpdateLinstener = voiceUpdateLinstener;
    }

    public ProgressView(Context context) {
        super(context);
        init();
    }
    public ProgressView(Context context, @Nullable AttributeSet attrs) {
        super(context, attrs);
        init();
    }
    public ProgressView(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init();
    }
    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec);
        int widthSize = MeasureSpec.getSize(widthMeasureSpec);

        setMeasuredDimension(widthSize, outRectHeight + getPaddingTop() + getPaddingBottom());

    }
    private void init() {
        outRectPaint = initPaint();
        outRectPaint.setColor(Color.CYAN);
        innerRectPaint = initPaint();
        innerRectPaint.setColor(Color.YELLOW);
        ballPaint = initPaint();
        ballPaint.setColor(Color.RED);
        ballRect = new RectF();
    }
    private void initValueAnimator() {
        valueAnimator = ValueAnimator.ofInt(degress, 0);
          valueAnimator.setDuration(Math.abs(degress)/10*100);
        valueAnimator.addUpdateListener(new ValueAnimator.AnimatorUpdateListener() {
            @Override
            public void onAnimationUpdate(ValueAnimator valueAnimator) {
                degress = (int) valueAnimator.getAnimatedValue();
                invalidate();
            }
        });
        valueAnimator.start();
    }
    private Paint initPaint() {
        Paint paint = new Paint(Paint.ANTI_ALIAS_FLAG);  //抗锯齿
        paint.setDither(true);  //防抖动
        paint.setColor(Color.CYAN);
        paint.setStyle(Paint.Style.FILL);
        paint.setStrokeCap(Paint.Cap.SQUARE);
        return paint;
    }
    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        canvas.translate(getMeasuredWidth() / 2, getMeasuredHeight() / 2);
        dealBallLength();
        rectF1 = new RectF((-getMeasuredWidth() / 2) + getPaddingLeft(), -outRectHeight / 2, (getMeasuredWidth() / 2) - getPaddingLeft(), outRectHeight / 2);
        rectF2 = new RectF((-getMeasuredWidth() / 2) + getPaddingLeft() + getPaddingLeft(), -innerRectHeight / 2, (getMeasuredWidth() / 2) - getPaddingLeft() - getPaddingLeft(), innerRectHeight / 2);
        length = (int) rectF2.width();
        canvas.rotate(degress);
        canvas.drawRoundRect(rectF1, 10, 10, outRectPaint);
        canvas.drawRoundRect(rectF2, 20, 20, innerRectPaint);
        canvas.drawCircle((rectF2.left + ballCurrentLength) + circleRadius / 2, rectF2.centerY(), circleRadius, ballPaint);
        ballRect.left = (rectF2.left + ballCurrentLength) + circleRadius / 2 - circleRadius;
        ballRect.right = (rectF2.left + ballCurrentLength) + circleRadius / 2 + circleRadius;
        ballRect.top = rectF2.centerY() - circleRadius;
        ballRect.bottom = rectF2.centerY() + circleRadius;

        if (voiceUpdateLinstener != null) {
            voiceUpdateLinstener.onVoiceChanged((int) ((float) ballCurrentLength / length * 100));
        }
    }
    private int dealBallLength() {
        speed = Math.abs(degress) / 3 + minSpeed;
        if (degress > 0 && ballCurrentLength < length) {
            speed = ballCurrentLength + speed > length ? (length - ballCurrentLength) : speed;
            ballCurrentLength += speed;
            invalidate();
        } else if (degress < 0 && ballCurrentLength > 0) {
            speed = ballCurrentLength - speed < 0 ? ballCurrentLength : speed;
            ballCurrentLength -= speed;
            invalidate();
        }

        return ballCurrentLength;
    }
    @Override
    public boolean onTouchEvent(MotionEvent event) {
        float y = event.getY();
        float x = event.getX();
        switch (event.getAction()) {
            case MotionEvent.ACTION_DOWN:
                if (valueAnimator != null && valueAnimator.isRunning()) {
                    return false;
                }
                if (ballRect.contains(event.getX() - getMeasuredWidth() / 2, y - getMeasuredHeight() / 2)) {
                    isTouchBall = true;
                    break;
                }
                if (rectF1.contains(event.getX() - getMeasuredWidth() / 2, y - getMeasuredHeight() / 2)) {   //平移过坐标系
                    doRoate = true;
                    downY = (int) event.getY();
                    if (event.getX() - getMeasuredWidth() / 2 <= 0) {
                        isTouchLeft = true;
                    } else {
                        isTouchLeft = false;
                    }
                }
                break;
            case MotionEvent.ACTION_MOVE:
                if (isTouchBall) {
                    ballCurrentLength = (int) (x - getPaddingLeft() - getPaddingLeft());
                    if (ballCurrentLength < 0) {
                        ballCurrentLength = 0;
                    } else if (ballCurrentLength > length) {
                        ballCurrentLength = length;
                    }
                    invalidate();
                    break;
                }
                x = (float) Math.atan((y - downY) / rectF1.right);
                degress = (int) Math.toDegrees(x);
                degress = isTouchLeft ? -degress : degress;
                invalidate();
                break;
            case MotionEvent.ACTION_UP:
                if (doRoate) {
                    initValueAnimator();
                }
                doRoate = false;
                isTouchBall = false;
                break;
        }
        return true;
    }
    public interface OnVoiceUpdateLinstener {
        void onVoiceChanged(int voice);
    }
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 204,921评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,635评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,393评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,836评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,833评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,685评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,043评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,694评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,671评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,670评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,779评论 1 332
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,424评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,027评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,984评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,214评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,108评论 2 351
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,517评论 2 343

推荐阅读更多精彩内容

  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,463评论 25 707
  • ¥开启¥ 【iAPP实现进入界面执行逐一显】 〖2017-08-25 15:22:14〗 《//首先开一个线程,因...
    小菜c阅读 6,357评论 0 17
  • 1: 获取控件宽高 控件View有getHeight()和getwidth()方法可以获取宽高,但是如果直接在on...
    自由人是工程师阅读 1,766评论 0 0
  • 乱像祸京畿,童儿障难挥。 双亲安忍苦,师德岂能违? 从朋友口中得知“三种颜色”之原由!愤慨不已!京畿之地竟生此等乱...
    啼笑姻缘阅读 308评论 3 2
  • 看《人民的名义》这个电视剧,很多企业家为大风厂的老板蔡成功的命运而嗟叹,那做为同是做创业的,做企业管理的伙伴们,你...
    村子老师阅读 359评论 0 0