可以在 x 和 y 坐标上跟踪 SeekBar 的拇指吗?

发布于 2024-12-24 19:08:14 字数 143 浏览 0 评论 0原文

我正在做一个android应用程序,我想拖动图像并将其放置在SeekBar顶部的某个特定位置,相应地,当SeekBar或拇指的进度与我想要播放歌曲的图像位置碰撞时,为此要发生这种情况,我想我必须跟踪拇指在 x 和 y 坐标上的位置,这可以实现吗?还有其他办法可以绕过去吗?

I am doing an android app, I want to drag an image and place it on top of a SeekBar at some particular location and correspondingly when the progress of the SeekBar or the thumb collides with the image location I want to play a song, for this to happen I guess I would have to track the location of the thumb on x and y coordinates, can this be achieved? Is there some other way to go around?

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

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

发布评论

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

评论(1

陌路终见情 2024-12-31 19:08:14
  1. 您应该在具有 ACTION_MOVE 事件的 onThouchEvent 中执行操作。
  2. 您可以使用一些有用的方法:getHitRect,它可以获取视图的矩形,以便您可以使用Rect.contains(int x,int y)来获取是否视图在指定的位置,getLocationOnScreen可以帮助你获取视图在屏幕中的绝对位置,这样你得到的所有点都在同一个坐标系中。
  1. You should do the things in the onThouchEvent which has a ACTION_MOVE event.
  2. There are some useful method you can use : getHitRect which can get the rect of the view so that you can use Rect.contains(int x,int y) to get whether the view is in the specified loacation, getLocationOnScreen can help you get the absolute position of the view in the screen so that all the point you get is in the same coordinate system.
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文