gpt4 book ai didi

android - 为什么在 Canvas 上画虚线不起作用?

转载 作者:行者123 更新时间:2023-11-29 14:16:30 32 4
gpt4 key购买 nike

为什么以下代码在 Pixel 2 上有效,但在 Samsung Note 8 上却无效?

linePaint.let { paint ->
paint.style = Paint.Style.STROKE
paint.color = ContextCompat.getColor(context, R.color.red)
paint.strokeWidth = 10
paint.pathEffect = DashPathEffect(floatArrayOf(10, 20), 0f)
}

canvas.drawLine(0, canvas.height / 2, canvas.width, canvas.height / 2, linePaint)

看到提示可以使用android:hardwareAccelerated="false",但是不行,因为出现性能问题

最佳答案

在您的 View 类中,您应该禁用硬件加速。这将使您能够绘制点划线

您可以通过以下方式做到这一点:

setLayerType(View.LAYER_TYPE_SOFTWARE, null);

关于android - 为什么在 Canvas 上画虚线不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55717109/

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