gpt4 book ai didi

android - 如何在 Jetpack Compose 中制作虚线/虚线?

转载 作者:行者123 更新时间:2023-12-04 23:40:03 68 4
gpt4 key购买 nike

我需要从 this answer 复制 android XML View 但在 Jetpack Compose 中使用纯 kotlin

最佳答案

您可以简单地使用 Canvas用方法drawLine申请为 pathEffect一个 PathEffect.dashPathEffect :

    val pathEffect = PathEffect.dashPathEffect(floatArrayOf(10f, 10f), 0f)
Canvas(Modifier.fillMaxWidth().height(1.dp)) {

drawLine(
color = Color.Red,
start = Offset(0f, 0f),
end = Offset(size.width, 0f),
pathEffect = pathEffect
)
}
enter image description here
您还可以将相同的 pathEffect 应用于其他方法:
    val stroke = Stroke(width = 2f,
pathEffect = PathEffect.dashPathEffect(floatArrayOf(10f, 10f), 0f)
)
Canvas(Modifier.fillMaxWidth().height(70.dp)){
drawRoundRect(color = Color.Red,style = stroke)
}
enter image description here

关于android - 如何在 Jetpack Compose 中制作虚线/虚线?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68789204/

68 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com