文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Android自定义View实现体重表盘的方法是什么

2023-06-25 12:03

关注

本篇内容介绍了“Android自定义View实现体重表盘的方法是什么”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

效果视频

Android自定义View实现体重表盘的方法是什么

分析

起始角度

如下图所示,起点角度为150,终点角度为240

Android自定义View实现体重表盘的方法是什么

圆弧

白色圆弧为整个圆弧范围,蓝色圆弧为根据数据变动而覆盖白色圆弧,蓝色圆弧比白色圆弧大一点,突出显示

 InnerArcPaint.setStrokeWidth( Width * (float)0.1 ); OuterArcPaint.setStrokeWidth( Width * (float)0.12 );

指针

中间的水滴指针是一个白色的水滴图片,下图蓝色为选择文件的背景颜色(截图),由于水滴指向-135度,将图像旋转-75度,水滴尖刚好指向150度的起点。

Android自定义View实现体重表盘的方法是什么

代码

初始化属性

 private void InitPaint(){        InnerArcPaint = new Paint(  );        InnerArcPaint.setColor( Color.WHITE );        InnerArcPaint.setAntiAlias( true );        InnerArcPaint.setStyle( Paint.Style.STROKE );        OuterArcPaint = new Paint(  );        OuterArcPaint.setColor( Color.BLUE );        OuterArcPaint.setAntiAlias( true );        OuterArcPaint.setStyle( Paint.Style.STROKE );        OuterArcPaint.setShadowLayer( (float)10,(float)10,(float)10,Color.parseColor( "#99000000" ) );        TextPaint = new Paint(  );        TextPaint.setColor( Color.RED );        TextPaint.setStyle( Paint.Style.STROKE );        TextPaint.setTextSize( 60 );        TextPaint.setStrokeWidth( 2 );        ScalePaint = new Paint(  );        ScalePaint.setColor( Color.WHITE );        ScalePaint.setTextSize( 25 );        //硬件加速        setLayerType( LAYER_TYPE_SOFTWARE,null );    }

画布

protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {        super.onMeasure( widthMeasureSpec, heightMeasureSpec );        int Width = MeasureSpec.getSize( widthMeasureSpec );        InnerArcPaint.setStrokeWidth( Width * (float)0.1 );        OuterArcPaint.setStrokeWidth( Width * (float)0.12 );        oval = new RectF(  );        oval.left = Width * (float)0.2;        oval.top = Width * (float)0.2;        oval.right = Width * (float)0.8;        oval.bottom = Width * (float)0.8;        //宽、高一致,使画布无论边长如何变化,都成为一个正方形        setMeasuredDimension( Width,Width );    }

绘制内圆弧

 //绘制内圆弧    private void DrawInnerArc(Canvas canvas){        //保存之前的画布        canvas.save();        canvas.drawArc( oval, StartAngle,SweepAngle,false,InnerArcPaint);    }

绘制外圆弧

//绘制外圆弧    private void DrawOuterArc(Canvas canvas){        canvas.save();        canvas.drawArc( oval, StartAngle,SweepAngle * CurrentData / 300,false,OuterArcPaint);    }

绘制中间指针

 //绘制中间指针    private void DrawArrow(Canvas canvas){       canvas.save();        Bitmap bitmap = BitmapFactory.decodeResource( getResources(),R.mipmap.waterdrop );        int width = 75;        int height = 75;        int NewWidth = (int)(getWidth() * 0.08);        float ScaleWidth = (float) (NewWidth / width);        float ScaleHeight = (float) (NewWidth / height);        Matrix matrix = new Matrix(  );        //顺序不能颠倒        matrix.setRotate( -75 + (SweepAngle * CurrentData / 300),bitmap.getWidth()/2,bitmap.getHeight()/2 );        matrix.postScale( ScaleWidth,ScaleHeight );        Bitmap bitmap1 = Bitmap.createBitmap( bitmap,0,0,width,height,matrix,true );        canvas.drawBitmap( bitmap1,getWidth()/2 - bitmap1.getWidth()/2,getHeight()/2 - bitmap1.getHeight()/2,InnerArcPaint );        bitmap.recycle();        bitmap1.recycle();    }

绘制中间文字

private void DrawCurrentDataText(Canvas canvas){        canvas.save();        Rect rect = new Rect(  );        String str = String.valueOf( CurrentData ) + "KG";        TextPaint.setColor( Color.RED );        TextPaint.getTextBounds( str,0,str.length(),rect );        canvas.drawText( str,getWidth()/2 - rect.width()/2,(int)(getHeight() * (float)0.38),TextPaint );    }

绘制左右两边文字

 private void DrawScaleRightText(Canvas canvas){        canvas.save();        Rect rect = new Rect(  );        String str =  "300KG";        TextPaint.setTextSize( 45 );        TextPaint.getTextBounds( str,0,str.length(),rect );        TextPaint.setColor( Color.WHITE );        canvas.drawText( str,getWidth()-getWidth()/6,(getHeight()/2+getWidth()/5) ,TextPaint );    }    private void DrawScaleLeftText(Canvas canvas){        canvas.save();        Rect rect = new Rect(  );        String str =  "0KG";        TextPaint.setTextSize( 45 );        TextPaint.getTextBounds( str,0,str.length(),rect );        TextPaint.setColor( Color.WHITE );        canvas.drawText( str,(getWidth()/2-(getWidth()/3 + 75)),(getHeight()/2+getWidth()/5) ,TextPaint );    }

动画

 public void SetCurrentData(final float data, TimeInterpolator interpolator){        long time = ( (long)Math.abs( data- CurrentData ) *20);        final ValueAnimator valueAnimator = ValueAnimator.ofFloat( CurrentData,data ).setDuration( time );        valueAnimator.setInterpolator( interpolator );        valueAnimator.addUpdateListener( new ValueAnimator.AnimatorUpdateListener() {            @Override            public void onAnimationUpdate(ValueAnimator animation) {                CustomView_ClockDial.this.CurrentData = (float)valueAnimator.getAnimatedValue();                invalidate();            }        } );        valueAnimator.start();    }

全部代码

public class CustomView_ClockDial extends View {    //内圆弧画笔    private Paint InnerArcPaint;    //外圆弧画笔    private Paint OuterArcPaint;    //文字画笔    private Paint TextPaint;    //刻度画笔    private Paint ScalePaint;    //圆弧范围    private RectF oval;    //当前数据    private float CurrentData = 0;    //起点角度    private float StartAngle = 150;    //终点角度    private float SweepAngle = 240;    public CustomView_ClockDial(Context context) {        super( context );        InitPaint();    }    public CustomView_ClockDial(Context context, @Nullable AttributeSet attrs) {        super( context, attrs );        InitPaint();    }    public CustomView_ClockDial(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {        super( context, attrs, defStyleAttr );        InitPaint();    }    private void InitPaint(){        InnerArcPaint = new Paint(  );        InnerArcPaint.setColor( Color.WHITE );        InnerArcPaint.setAntiAlias( true );        InnerArcPaint.setStyle( Paint.Style.STROKE );        OuterArcPaint = new Paint(  );        OuterArcPaint.setColor( Color.BLUE );        OuterArcPaint.setAntiAlias( true );        OuterArcPaint.setStyle( Paint.Style.STROKE );        OuterArcPaint.setShadowLayer( (float)10,(float)10,(float)10,Color.parseColor( "#99000000" ) );        TextPaint = new Paint(  );        TextPaint.setColor( Color.RED );        TextPaint.setStyle( Paint.Style.STROKE );        TextPaint.setTextSize( 60 );        TextPaint.setStrokeWidth( 2 );        ScalePaint = new Paint(  );        ScalePaint.setColor( Color.WHITE );        ScalePaint.setTextSize( 25 );        //硬件加速        setLayerType( LAYER_TYPE_SOFTWARE,null );    }    @Override    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {        super.onMeasure( widthMeasureSpec, heightMeasureSpec );        int Width = MeasureSpec.getSize( widthMeasureSpec );        InnerArcPaint.setStrokeWidth( Width * (float)0.1 );        OuterArcPaint.setStrokeWidth( Width * (float)0.12 );        oval = new RectF(  );        oval.left = Width * (float)0.2;        oval.top = Width * (float)0.2;        oval.right = Width * (float)0.8;        oval.bottom = Width * (float)0.8;        //宽、高一致,使画布无论边长如何变化,都成为一个正方形        setMeasuredDimension( Width,Width );    }    @Override    protected void onDraw(Canvas canvas) {        super.onDraw( canvas );        DrawInnerArc(canvas);        DrawOuterArc(canvas);        DrawArrow(canvas);        DrawCurrentDataText(canvas);        DrawScaleRightText(canvas);        DrawScaleLeftText(canvas);    }    //绘制内圆弧    private void DrawInnerArc(Canvas canvas){        //保存之前的画布        canvas.save();        canvas.drawArc( oval, StartAngle,SweepAngle,false,InnerArcPaint);    }    //绘制外圆弧    private void DrawOuterArc(Canvas canvas){        canvas.save();        canvas.drawArc( oval, StartAngle,SweepAngle * CurrentData / 300,false,OuterArcPaint);    }    //绘制中间指针    private void DrawArrow(Canvas canvas){       canvas.save();        Bitmap bitmap = BitmapFactory.decodeResource( getResources(),R.mipmap.waterdrop );        int width = 75;        int height = 75;        int NewWidth = (int)(getWidth() * 0.08);        float ScaleWidth = (float) (NewWidth / width);        float ScaleHeight = (float) (NewWidth / height);        Matrix matrix = new Matrix(  );        //顺序不能颠倒        matrix.setRotate( -75 + (SweepAngle * CurrentData / 300),bitmap.getWidth()/2,bitmap.getHeight()/2 );        matrix.postScale( ScaleWidth,ScaleHeight );        Bitmap bitmap1 = Bitmap.createBitmap( bitmap,0,0,width,height,matrix,true );        canvas.drawBitmap( bitmap1,getWidth()/2 - bitmap1.getWidth()/2,getHeight()/2 - bitmap1.getHeight()/2,InnerArcPaint );        bitmap.recycle();        bitmap1.recycle();    }    private void DrawCurrentDataText(Canvas canvas){        canvas.save();        Rect rect = new Rect(  );        String str = String.valueOf( CurrentData ) + "KG";        TextPaint.setColor( Color.RED );        TextPaint.getTextBounds( str,0,str.length(),rect );        canvas.drawText( str,getWidth()/2 - rect.width()/2,(int)(getHeight() * (float)0.38),TextPaint );    }    private void DrawScaleRightText(Canvas canvas){        canvas.save();        Rect rect = new Rect(  );        String str =  "300KG";        TextPaint.setTextSize( 45 );        TextPaint.getTextBounds( str,0,str.length(),rect );        TextPaint.setColor( Color.WHITE );        canvas.drawText( str,getWidth()-getWidth()/6,(getHeight()/2+getWidth()/5) ,TextPaint );    }    private void DrawScaleLeftText(Canvas canvas){        canvas.save();        Rect rect = new Rect(  );        String str =  "0KG";        TextPaint.setTextSize( 45 );        TextPaint.getTextBounds( str,0,str.length(),rect );        TextPaint.setColor( Color.WHITE );        canvas.drawText( str,(getWidth()/2-(getWidth()/3 + 75)),(getHeight()/2+getWidth()/5) ,TextPaint );    }    public void SetCurrentData(final float data, TimeInterpolator interpolator){        long time = ( (long)Math.abs( data- CurrentData ) *20);        final ValueAnimator valueAnimator = ValueAnimator.ofFloat( CurrentData,data ).setDuration( time );        valueAnimator.setInterpolator( interpolator );        valueAnimator.addUpdateListener( new ValueAnimator.AnimatorUpdateListener() {            @Override            public void onAnimationUpdate(ValueAnimator animation) {                CustomView_ClockDial.this.CurrentData = (float)valueAnimator.getAnimatedValue();                invalidate();            }        } );        valueAnimator.start();    }}

“Android自定义View实现体重表盘的方法是什么”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     807人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     351人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     314人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     433人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     221人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯