可以在 x 和 y 坐标上跟踪 SeekBar 的拇指吗?
我正在做一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
ACTION_MOVE
事件的onThouchEvent
中执行操作。getHitRect
,它可以获取视图的矩形,以便您可以使用Rect.contains(int x,int y)
来获取是否视图在指定的位置,getLocationOnScreen
可以帮助你获取视图在屏幕中的绝对位置,这样你得到的所有点都在同一个坐标系中。onThouchEvent
which has aACTION_MOVE
event.getHitRect
which can get the rect of the view so that you can useRect.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.