我按照下面的教程添加五彩纸屑。
final KonfettiView konfettiView = (KonfettiView)findViewById(viewKonfetti);
konfettiView.build()
.addColors(Color.RED, Color.GREEN)
.setSpeed(1f, 5f)
.setFadeOutEnabled(true)
.setTimeToLive(2000L)
.addShapes(Shape.RECT, Shape.CIRCLE)
.setPosition(0f, -359f, -359f, 0f)
.stream(200, 5000L);
我希望五彩纸屑出现在右上角而不是左上角。我应该在setPosition
方法中添加什么值?这种方法有什么用?
我正在关注此https://github.com/DanielMartinus/Konfetti,但没有太多关于这些方法及其参数的信息。
答案 0 :(得分:2)
以下是编辑的代码,它可以为您提供所需的输出:
fun setPosition(x: Float, y: Float): ParticleSystem {
location.setX(x)
location.setY(y)
return this
}
/**
* Set position range to emit particles from
* A random position on the x-axis between [minX] and [maxX] and y-axis between [minY] and [maxY]
* will be picked for each confetti.
* @param [maxX] leave this null to only emit from [minX]
* @param [maxY] leave this null to only emit from [minY]
*/
fun setPosition(minX: Float, maxX: Float? = null, minY: Float, maxY: Float? = null): ParticleSystem {
location.betweenX(maxX, maxX)
location.betweenY(minY, maxY)
return this
}
参考this answer组装/调整方向并相应地进行协调。
也;如果你想只放置坐标;正如您所发现的那样,有一个MotionEvent
类,其getX()
和getY()
方法返回相对于视图的坐标。
希望它有所帮助......