画布和位图

发布于 2024-12-09 06:38:27 字数 104 浏览 0 评论 0原文

我有一个画布,我正在其中绘制位图并使用 onTouchEvent 方法移动该位图。我的问题是,我移动的位图有时会超出画布区域,那么如何解决与画布边界相关的问题。请帮助我解决这个问题,并提前致谢。

I have a canvas and I am drawing bitmap into it and moving that bitmap using onTouchEvent method. My problem is that the bitmap I move sometimes go out of the canvas region so how to solve this problem related to boundry of canvas. Please help me out on this and Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

反目相谮 2024-12-16 06:38:27

当您在屏幕上移动手指时,您可以设置位图的 x,y 绘图坐标。由于您可以通过 onSizeChanged 方法知道画布的大小,因此您只需要编写一个 if 语句,仅当手指位于您想要的区域内时,该语句才会更改该位图的绘制坐标。

When you move the finger over the screen, you set the x,y drawing coordinates for your bitmap. Since you can know the size of the canvas from onSizeChanged method, you just need to make an if statement which will change the drawing coordinates of this bitmap only if the finger is within the area you want.

蒲公英的约定 2024-12-16 06:38:27

根据您的算法计算出的当前位置和基准位置的距离,您可以解决这个问题。这只是你的算法问题。

From the distance of current position and the base position calculate from your algorithm, you could able to manage this problem. It's only your algorithm problem.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文