RatingBar自定义打分控件

image.png

在网页上看到这种打分效果,想着android里咋实现。
第一想法就是RatingBar了,它背景默认是一排星星,而这里需要数字1到10的,系统的肯定做不到,那么稍微改下就可以吧?
为啥在系统的RatingBar上改?
为了偷懒,不用处理触摸事件.我们只需要在onDraw里画上我们要的就行了

前提知识:

 android:numStars="10"
        android:stepSize="1"
        android:rating="4"

为了省事,numStarts就当做我们的score了,rating就是当前的打分,stepSize我们会默认设置为1,这样每次滑动间隔就是1分了.
还有默认的星星,再最后我们会把它设置为null,这样就只会显示我们自定义的了。

默认的主题,Appcompat包下的,材料主题可能有区别,只是说明下,默认的高度是固定的,最小最大值一样,这个我们需要修改下,要不可能没法把score的item弄成正方形.

    <style name="Widget.RatingBar">
        <item name="indeterminateOnly">false</item>
        <item name="progressDrawable">@drawable/ratingbar_full</item>
        <item name="indeterminateDrawable">@drawable/ratingbar_full</item>
        <item name="minHeight">57dip</item>
        <item name="maxHeight">57dip</item>
        <item name="thumb">@null</item>
        <item name="mirrorForRtl">true</item>
    </style>

step 1

首先我们要根据容器的宽度,计算每个item的宽
每个score之间是有个间隔的,我们定义个固定值,然后算下有几个
假如总的score count是10,那么space的个数就是10-1,我们只需要宽度减去这些space的宽,然后除以score的个数,就知道每个的宽度的,很简单
因为RatingBar有固定的高度的,不符合我们的需求,所以下边根据item的宽,修改了容器的高度.

    override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec)

        starSize=(measuredWidth-(numStars-1)*spaceWidth)/numStars
        rect.set(0f,0f,starSize,starSize)//我这里每个score的item是个正方形的
        setMeasuredDimension(measuredWidth,starSize.toInt())
        paintText.getTextBounds("10",0,2,textBounds)
    }

step 2

然后就是循环绘制那10个item的背景以及文字了.

    override fun onDraw(canvas: Canvas) {
        super.onDraw(canvas)
        if(width==0||height==0){
            return
        }
        rectTemp.set(rect)
        (0 until  numStars).forEach {
            rectTemp.offsetTo((starSize+spaceWidth)*it,0f)
            val isPre=it<rating
            paintBG.apply {
                color=if(isPre) Color.BLUE else Color.GRAY
            }
            canvas.drawRect(rectTemp,paintBG)

            paintText.apply {
                color=if(isPre) Color.WHITE else Color.BLACK
            }
            canvas.drawText("${it+1}",rectTemp.centerX(),rectTemp.centerY()+textBounds.height()/2,paintText)
        }

    }

step 3

添加的参数
就是4种颜色,以及文字大小,间距大小

    <declare-styleable name="ScoreRatingBar">
        <attr name="ScoreTextNormalColor" format="color"/>
        <attr name="ScoreTextCheckedColor" format="color"/>
        <attr name="ScoreItemNormalColor" format="color"/>
        <attr name="ScoreItemCheckedColor" format="color"/>
        <attr name="ScoreTextSize" format="dimension"/>
        <attr name="ScoreItemSpace" format="dimension"/>
    </declare-styleable>

布局
红框四个属性是必须的
最大高度的值随便弄个大点的就行,实际高度是根据宽度算出来的,保证item是正方形
progressDrawalbe 弄成空,就是隐藏默认的星星
numstarts:可以当做最大分数
rating:当前分数


image.png

源码

import android.content.Context
import android.graphics.*
import android.graphics.drawable.ColorDrawable
import android.util.AttributeSet
import androidx.appcompat.widget.AppCompatRatingBar
import com.mitac.app2020.R

class ScoreRatingBar : AppCompatRatingBar {

    constructor(context: Context) : super(context)
    constructor(context: Context, attrs: AttributeSet?) : super(context, attrs) {
        init(context, attrs, 0)
    }

    constructor(context: Context, attrs: AttributeSet?, defStyleAttr: Int) : super(
        context,
        attrs,
        defStyleAttr
    ) {
        init(context, attrs, defStyleAttr)
    }

    private fun init(context: Context, attrs: AttributeSet?, defStyleAttr: Int) {
        stepSize = 1f
        val a = context.obtainStyledAttributes(attrs, R.styleable.ScoreRatingBar, defStyleAttr, 0)
        scoreTextSize = a.getDimensionPixelSize(R.styleable.ScoreRatingBar_ScoreTextSize, scoreTextSize);
        spaceWidth = a.getDimensionPixelSize(R.styleable.ScoreRatingBar_ScoreItemSpace, spaceWidth)
        textColorNormal =
            a.getColor(R.styleable.ScoreRatingBar_ScoreTextNormalColor, textColorNormal)
        textColorChecked =
            a.getColor(R.styleable.ScoreRatingBar_ScoreTextCheckedColor, textColorChecked)
        itemColorNormal =
            a.getColor(R.styleable.ScoreRatingBar_ScoreItemNormalColor, itemColorNormal)
        itemColorChecked =
            a.getColor(R.styleable.ScoreRatingBar_ScoreItemCheckedColor, itemColorChecked)
        a.recycle()
        paintText.textSize=scoreTextSize.toFloat()
    }

    var scoreTextSize = 30
    val rectTemp = RectF()//临时rect,初始化为第一个score item的位置,后边的进行平移即可
    var spaceWidth = 10;//每个score item之间的间隔距离
    val rect = RectF()//first score item rect
    var starSize = 0f//每个score item的宽度
    val textBounds = Rect()//计算的文字的范围
    val paintBG = Paint().apply {//画背景的
        style = Paint.Style.FILL
    }
    var textColorNormal = Color.BLACK
    var textColorChecked = Color.WHITE
    var itemColorNormal = Color.GRAY
    var itemColorChecked = Color.DKGRAY
    val paintText = Paint().apply {//画文字的
        textAlign = Paint.Align.CENTER
    }

    override fun onDraw(canvas: Canvas) {
        super.onDraw(canvas)
        if (width == 0 || height == 0) {
            return
        }
        rectTemp.set(rect)
        (0 until numStars).forEach {
            rectTemp.offsetTo((starSize + spaceWidth) * it, 0f)
            val isPre = it < rating
            paintBG.apply {
                color = if (isPre) itemColorChecked else itemColorNormal
            }
            canvas.drawRect(rectTemp, paintBG)

            paintText.apply {
                color = if (isPre) textColorChecked else textColorNormal
            }
            canvas.drawText(
                "${it + 1}",
                rectTemp.centerX(),
                rectTemp.centerY() + textBounds.height() / 2,
                paintText
            )
        }

    }


    override fun onMeasure(widthMeasureSpec: Int, heightMeasureSpec: Int) {
        super.onMeasure(widthMeasureSpec, heightMeasureSpec)
        paintText.getTextBounds("10", 0, 2, textBounds)
        starSize = (measuredWidth - (numStars - 1) * spaceWidth) / numStars.toFloat()
        rect.set(0f, 0f, starSize, starSize)
        setMeasuredDimension(measuredWidth, starSize.toInt())
    }

}

效果图


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