自定义一个270°半圆效果

案例分析

最近看到同事UI发了一个张图片,想到好久都没有手动画过图了,我们先看看我们要的效果图

image

我们看其中一个进行分析一下,首先是外围,一个270°的半圆,灰色的为底部,黄色的为progress。内部我们暂时看作4个文字,为了方便,我们暂时把下划线看作是百分数的自带下划线,看起来他这个下滑线的长度不会变,我就不多画一次了。

先画我们的外围半圆

    //背景
    backPaint = Paint()
    backPaint.color = Color.GRAY
    backPaint.strokeWidth = 10
    backPaint.isAntiAlias = true
    backPaint.style = Paint.Style.STROKE
    backPaint.strokeCap = Paint.Cap.ROUND
    //进度条
    paint = Paint()
    paint.color = Color.RED
    paint.strokeWidth = 10
    paint.isAntiAlias = true
    paint.style = Paint.Style.STROKE
    //拿到如图有一个弧形的开始与结束的线条
    paint.strokeCap = Paint.Cap.ROUND

接着我们测量一下这个弧形长度。按照图给的,两个半圆,肯定高度是大于我们控件显示范围的,目测每个半圆直径是在四分之一宽(当然UI会给出高度的,我们这里不计较)。这样半径就是

radius = widths / 8f

然后是我们的角度,可以看到是下方的90°被横切,而我们的3点钟方向是对应的0°,通过计算可知,我们是从135°处顺时针旋转270°

//3点钟方向为0f
private val startAngle = 135f
private val backSweepAngle = 270f
private var curProgress = 170f
private var curProgress2 = 66f

rectFOne = RectF(widths / 8f, 50f, widths * 3 / 8f, widths / 4f + 50)
rectFTwo = RectF(widths * 5 / 8f, 50f, widths * 7 / 8f, widths / 4f + 50)
private fun drawProgress(canvas: Canvas) {
    canvas.drawArc(rectFOne, startAngle, curProgress, false, paint)
    canvas.drawArc(rectFTwo, startAngle, curProgress2, false, paint)
}

private fun drawBack(canvas: Canvas) {
    canvas.drawArc(rectFOne, startAngle, backSweepAngle, false, backPaint)
    canvas.drawArc(rectFTwo, startAngle, backSweepAngle, false, backPaint)
}
image

看看效果图(不要在意颜色)

绘出文字

image

按照示意图这个排布,我们可以先算一下整个半圆的高度。明显高度d是一个r+sin45° * r

radius = widths / 8f
d = (Math.sin(Math.PI / 4) * radius + radius).toFloat()

根据我们画弧度的reactOne与reactTwo可以拿到两个半圆的圆心

centreX = rectFOne.centerX()
centreY = rectFOne.centerY()

centerX = rectFTwo.centerX()
centerY = rectFTwo.centerY()

然后开始我们画文字,百分数我们就把他放在中点,上面放在3/7 a的高度,下面依次放在最下端,到3/7 a的高度。

    //整个圆弧的高度
private var d = 0f

private var defaultBottomText = "你两都变了"
private var defaultBottomNext = "我火了你改变了"
private var defaultTopText = "我改变了我火了"
private var defaultCenterText = "63.3%"
private var defaultCenterText2 = "24.5%"

textPaint = Paint()
textPaint.isAntiAlias = true
textPaint.style = Paint.Style.FILL
textPaint.textAlign = Paint.Align.CENTER
textPaint.textSize = d / 12

bigTextPaint = Paint()
bigTextPaint.isAntiAlias = true
bigTextPaint.style = Paint.Style.FILL
bigTextPaint.textAlign = Paint.Align.CENTER
bigTextPaint.textSize = d / 4
bigTextPaint.isUnderlineText = true
bigTextPaint.color = Color.GREEN

private fun drawText(canvas: Canvas) {
    val h = (Math.sin(Math.PI / 4) * radius).toFloat()
    canvas.drawText(defaultBottomText, centreX, centreY + h, textPaint)
    canvas.drawText(defaultBottomNext, centreX, centreY + h * 4 / 7, textPaint)
    canvas.drawText(defaultCenterText, centreX, centreY, bigTextPaint)
    canvas.drawText(defaultTopText, centreX, centreY - radius * 4 / 7, textPaint)

    canvas.drawText(defaultBottomText, centerX, centreY + h, textPaint)
    canvas.drawText(defaultBottomNext, centerX, centreY + h * 4 / 7, textPaint)
    canvas.drawText(defaultCenterText2, centerX, centreY, bigTextPaint)
    canvas.drawText(defaultTopText, centerX, centreY - radius * 4 / 7, textPaint)
}

我们来看看效果

image

目的基本上达到了,对比下原图,到时候更换下背景,再更换下颜色就会好看点。本来做到这里就完了,但是呢,我们是有追求的人。常看网上加载这种数据的,进度条应该有一个加载动画从0到多少多少。现在我们也要来一个。

动画效果

image

唉~加载之后满满逼格就上来了。下面我贴出所有代码

class DoubleCircleView : View {
private lateinit var backPaint: Paint
private lateinit var paint: Paint
private lateinit var textPaint: Paint
private lateinit var bigTextPaint: Paint

private lateinit var animation: ValueAnimator

private lateinit var rectFOne: RectF
private lateinit var rectFTwo: RectF
private var widths = 0
private var mContext: Context
//第一个圆弧
private var centreX = 0f
private var centreY = 0f
private var radius = 0f

//第二个圆弧
private var centerX = 0f
private var centerY = 0f
private var radius2 = 0f

//3点钟方向为0f
private val startAngle = 135f
private val backSweepAngle = 270f
//整个圆弧的高度
private var d = 0f

private var defaultBottomText = "计算机设计Bottom"
private var defaultBottomNext = "计算机设计BottomNext"
private var defaultTopText = "计算机设计Top"
private var defaultCenterText = "0.0%"
private var defaultCenterText2 = "0.0%"


private var curProgress = 0f
private var curProgress2 = 0f

constructor(context: Context) : super(context) {
    mContext = context
    initView()
}

constructor(context: Context, attrs: AttributeSet) : super(context, attrs) {
    mContext = context
    initView()
}

constructor(context: Context, attrs: AttributeSet, defStyleAttr: Int) : super(context, attrs, defStyleAttr) {
    mContext = context
    initView()
}

private fun initView() {
    widths = getScreenWidth()
    radius = widths / 8f
    d = (Math.sin(Math.PI / 4) * radius + radius).toFloat()


    backPaint = Paint()
    backPaint.color = Color.GRAY
    backPaint.strokeWidth = d / 10
    backPaint.isAntiAlias = true
    backPaint.style = Paint.Style.STROKE
    backPaint.strokeCap = Paint.Cap.ROUND

    paint = Paint()
    paint.color = Color.RED
    paint.strokeWidth = d / 10
    paint.isAntiAlias = true
    paint.style = Paint.Style.STROKE
    paint.strokeCap = Paint.Cap.ROUND


    rectFOne = RectF(widths / 8f, 50f, widths * 3 / 8f, widths / 4f + 50)
    rectFTwo = RectF(widths * 5 / 8f, 50f, widths * 7 / 8f, widths / 4f + 50)

    centreX = rectFOne.centerX()
    centreY = rectFOne.centerY()

    centerX = rectFTwo.centerX()
    centerY = rectFTwo.centerY()

    Log.i("xx", radius.toString())

    textPaint = Paint()
    textPaint.isAntiAlias = true
    textPaint.style = Paint.Style.FILL
    textPaint.textAlign = Paint.Align.CENTER
    textPaint.textSize = d / 12

    bigTextPaint = Paint()
    bigTextPaint.isAntiAlias = true
    bigTextPaint.style = Paint.Style.FILL
    bigTextPaint.textAlign = Paint.Align.CENTER
    bigTextPaint.textSize = d / 4
    bigTextPaint.isUnderlineText = true
    bigTextPaint.color = Color.GREEN


}

override fun onDraw(canvas: Canvas?) {
    super.onDraw(canvas)
    canvas?.let {
        drawBack(it)
        drawProgress(it)
        drawText(it)
    }
}

private fun drawText(canvas: Canvas) {
    val h = (Math.sin(Math.PI / 4) * radius).toFloat()
    canvas.drawText(defaultBottomText, centreX, centreY + h, textPaint)
    canvas.drawText(defaultBottomNext, centreX, centreY + h * 4 / 7, textPaint)
    canvas.drawText(defaultCenterText, centreX, centreY, bigTextPaint)
    canvas.drawText(defaultTopText, centreX, centreY - radius * 4 / 7, textPaint)

    canvas.drawText(defaultBottomText, centerX, centreY + h, textPaint)
    canvas.drawText(defaultBottomNext, centerX, centreY + h * 4 / 7, textPaint)
    canvas.drawText(defaultCenterText2, centerX, centreY, bigTextPaint)
    canvas.drawText(defaultTopText, centerX, centreY - radius * 4 / 7, textPaint)
    Log.i("xx", d.toString() + ",," + centreY + "radius=" + radius)
}

private fun drawProgress(canvas: Canvas) {
    canvas.drawArc(rectFOne, startAngle, curProgress, false, paint)
    canvas.drawArc(rectFTwo, startAngle, curProgress2, false, paint)
}

private fun drawBack(canvas: Canvas) {
    canvas.drawArc(rectFOne, startAngle, backSweepAngle, false, backPaint)
    canvas.drawArc(rectFTwo, startAngle, backSweepAngle, false, backPaint)
}

private fun getScreenWidth(): Int {
    val service = context.getSystemService(Context.WINDOW_SERVICE) as WindowManager
    val metrics = DisplayMetrics()
    service.defaultDisplay.getMetrics(metrics)
    return metrics.widthPixels
}

fun changeText(pointValue: Float, pointValue2: Float) {
    defaultTopText = "我改变了我火了"
    defaultBottomNext = "我火了你改变了"
    defaultBottomText = "你两都变了"
    setArcData(0, pointValue)
    setArcData(1, pointValue2)

}
private fun setArcData(position: Int, percent: Float) {
    animation = ValueAnimator.ofFloat(0f, percent)
    animation.duration = 2000
    animation.addUpdateListener {
        val value = it.animatedValue as Float
        val fl = value / 100 * 270
        val s = String.format("%.1f", value) + "%";
        if (position == 0) {
            curProgress = fl
            defaultCenterText = s
        } else if (position == 1) {
            curProgress2 = fl
            defaultCenterText2 = s
        }
        invalidate()
    }
    animation.start()
}
}

使用方法还是贴一下

 <xx.love.view.DoubleCircleView
    android:id="@+id/rv"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    app:layout_constraintTop_toTopOf="parent"
    app:layout_constraintBottom_toBottomOf="parent"
    app:layout_constraintLeft_toLeftOf="parent"
    app:layout_constraintRight_toRightOf="parent"/> 


val rv = findViewById<DoubleCircleView>(R.id.rv)
rv.setOnClickListener {
        rv.changeText(63.3f,24.5f)
    }   

希望2019年越来越好_

?著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,029评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,238评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事?!?“怎么了?”我有些...
    开封第一讲书人阅读 159,576评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,214评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,324评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,392评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,416评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,196评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,631评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,919评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,090评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,767评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,410评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,090评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,328评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,952评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,979评论 2 351

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,079评论 4 62
  • 云遮残月心昭昭 把酒相邀清风绕 丝竹欲引九天阙 不若人生肆意好 没人告诉你 你还活着 或者早已死去 你可能不知道 ...
    古陶子安阅读 358评论 0 3
  • 小作业 关闭害怕失去的通道 ?我害怕失去的财富有哪些? 1、害怕失去团队的业绩奖金 2、害怕失去爱人.亲人.朋友同...
    西方月阅读 131评论 0 0
  • 【7】独家记忆 “今天太堵车,我就知道不能走机场高速,那条路,一年堵365天。”魏然给林欣看着一片红线的地图。 “...
    麦麦_ok阅读 391评论 0 2
  • https://www.cnblogs.com/gossip/p/5969925.html 启动 [root@iZ...
    回声2016阅读 374评论 0 0