首頁 > 軟體

利用Jetpack Compose實現繪製五角星效果

2022-04-16 19:01:09

說明

compose中我們的所有ui操作,包括一些行為,例如:點選、手勢等都需要使用Modifier來進行操作。因此對Modifier的理解可以幫助我們解決很多問題的

自定義星行Modifier

本文我們打算自定義一個Modifier,通過這個modifier我們可以實現用一個操作符就畫出五角星的效果

原理

我們實現繪製五角星的原理如下圖,首先我們會虛構兩個圓,將內圓和外圓角度平分五份,然後依次連線內圓和外圓的切點的座標,然後使用path繪製完成。

實現

程式碼中的實現涉及到自定義繪製,難度並不大。需要注意的點:

  1. composse中角度的錨點是弧度(Math.PI)、而原生的錨點是角度(360)
  2. 預設的原點在左上角,我們繪製的時候需要主動移動到組合的中心點
  3. path的繪製使用Fill可以填充閉合路徑圖形,使用Stroke可以繪製線性閉合路徑圖形

程式碼

fun Modifier.customDraw(
    color: Color,
    starCount: Int = 5,
    checked: Boolean = false,
) =
    this.then(CustomDrawModifier(color, starCount, checked = checked))

class CustomDrawModifier(
    private val color: Color,
    private val starCount: Int = 5,//星的數量
    private var checked: Boolean = false,
) :
    DrawModifier {
    override fun ContentDrawScope.draw() {
        log("$size")
        val radiusOuter = if (size.width > size.height) size.height / 2 else size.width / 2 //五角星外圓徑
        val radiusInner = radiusOuter / 2 //五角星內圓半徑
        val startAngle = (-Math.PI / 2).toFloat() //開始繪製點的外徑角度
        val perAngle = (2 * Math.PI / starCount).toFloat() //兩個五角星兩個角直接的角度差
        val outAngles = (0 until starCount).map {
            val angle = it * perAngle + startAngle
            Offset(radiusOuter * cos(angle), radiusOuter * sin(angle))
        }//所有外圓角的頂點
        val innerAngles = (0 until starCount).map {
            val angle = it * perAngle + perAngle / 2 + startAngle
            Offset(radiusInner * cos(angle), radiusInner * sin(angle))
        }//所有內圓角的頂點
        val path = Path()//繪製五角星的所有內圓外圓的點連線線
        (0 until starCount).forEachIndexed { index, _ ->
            val outerX = outAngles[index].x
            val outerY = outAngles[index].y
            val innerX = innerAngles[index].x
            val innerY = innerAngles[index].y
//            drawCircle(Color.Red, radius = 3f, center = outAngles[index])
//            drawCircle(Color.Yellow, radius = 3f, center = innerAngles[index])
            if (index == 0) {
                path.moveTo(outerX, outerY)
                path.lineTo(innerX, innerY)
                path.lineTo(outAngles[(index + 1) % starCount].x,
                    outAngles[(index + 1) % starCount].y)
            } else {
                path.lineTo(innerX, innerY)//移動到內圓角的端點
                path.lineTo(outAngles[(index + 1) % starCount].x,
                    outAngles[(index + 1) % starCount].y)//連線到下一個外圓角的端點
            }
            if (index == starCount - 1) {
                path.close()
            }
        }
        translate(size.width / 2, size.height / 2) {
            drawPath(path, color, style = if (checked) Fill else Stroke(width = 5f))
        }
    }

}

最終實現效果

以上就是利用Jetpack Compose實現繪製五角星效果的詳細內容,更多關於Jetpack Compose五角星的資料請關注it145.com其它相關文章!


IT145.com E-mail:sddin#qq.com