Android ShapeDrawable 平移变换
我有一个扩展 View 的类,在其中放置一个 ShapeDrawable
的实例,在 onDraw()
中使用 shapeDrawable.draw(canvas)
> 方法。
我想创建一个平移动画,在给定的时间内将 ShapeDrawable 对象移动到另一个 (x,y) 位置。
在Android 1.6中有一个简单的方法可以实现这一点吗? 或者我可以改变我的方法来帮助简化这项任务吗?
I have a class that extends View, in which I place an instance of a ShapeDrawable
, using shapeDrawable.draw(canvas)
in the onDraw()
method.
I would like to create a translate animation that would move the ShapeDrawable
object to another (x,y) position in a given amount of time.
Is there a simple way to achieve this in Android 1.6?
Or is there something that I can change in my approach that could help simplify this task?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以尝试这个虽然你必须添加一个计时器
You Could try this Although you would have to add a timer