Android ShapeDrawable 平移变换

发布于 2024-12-24 16:16:05 字数 260 浏览 1 评论 0原文

我有一个扩展 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

疑心病 2024-12-31 16:16:05

你可以尝试这个虽然你必须添加一个计时器

public void changePos (float dx, float dy) {
    mPosX += dx;
    mPosY += dy;
    this.invalidate ();
}

You Could try this Although you would have to add a timer

public void changePos (float dx, float dy) {
    mPosX += dx;
    mPosY += dy;
    this.invalidate ();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文