无法在搜索栏的 Thumb 中获得 texBox 的正确位置
我在安卓工作。我正在设计一个搜索栏。我在那里添加了拇指。它显示在正确的位置。
但我想在文本框中显示进度。为此,我使用以下代码:
int xPos = ((seekbar.getRight() - seekbar.getLeft()) * seekbar.getProgress()) /
seekbar.getMax();
但是这个 x 坐标并不准确。有点不同。
请建议我应该为此做什么。
I am working in android. I am designing a seekbar. I added thumb there. It is showing at right place.
But at that thumb I want to show progress in text box. For this I am using this code:
int xPos = ((seekbar.getRight() - seekbar.getLeft()) * seekbar.getProgress()) /
seekbar.getMax();
But this x coordinate is not exact. It is a little bit different.
Please suggest me what should I do for this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您已经计算了沿搜索栏的距离,因此您只需在其上添加seekbar.getLeft()即可:
You've calculated the distance along the seekbar, so you just need to add seekbar.getLeft() onto it: