显示搜索栏的进度
我有一个应用程序,我使用搜索栏来混合颜色,我希望在搜索栏上方有一个搜索栏以及搜索栏的距离的数量。我的搜索栏从 0 到 255,因此数字可能会在搜索栏上方显示为 138/255。
如果有人可以提供帮助,我们将不胜感激。 -Lfaudm
I have an app where I use seek bars to mix colors and i would like above the seek bar there to be and number of how far the seek bar is. My seek bars go from 0 to 255 so the number would show possibly like 138/255 above the seek bar.
If anyone can help that would be greatly appreciated.
-Lfaudm
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 SeekBar.onSeekBarChangeListener( ) 获取值的更改,然后只需将其写入位于 SeekBar 上方的 TextView。
You can use SeekBar.onSeekBarChangeListener() to get changes of the value and then simply write that to a TextView you positioned above the SeekBar.