如何自定义搜索栏的拇指
我想在 SeekBar
的拇指上方显示一个 TextView
,它将显示搜索栏的当前进度。当我们向前和向后移动拇指时,TextView
也会随着拇指移动(TextView
也应该位于拇指上方)。
请提供任何线索,代码片段总是受欢迎的。
I want to display a TextView
just above thumb of the SeekBar
that will display the current progress of seek bar. As we move the thumb forward and backward the TextView
will also move with thumb (the TextView
should also be above the thumb).
Please provide any clue, code snippet are always welcome.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
通过将
TextView
的padding
设置为以下方式,可以更轻松地移动文本:Moving the text can even more easily done by setting the
padding
for theTextView
as:活动的布局
在创建时初始化您的控件:
函数将移动您的值:
Layout of your activity
Initialize your controls on create:
Function will move your value:
找到了更好的方法。源自示例:
您不需要任何额外的方法,并且 ACTION_UP 事件对结果没有重要影响。
Found a better way. Derived from the sample:
There you don't need any additional method and the ACTION_UP event has no important effect on the result.