Android SeekBar 标记值在哪里
我有 3 个值的 SeekBar(左、中、右),我想在进度级别所在的位置放置一些标记,例如在中心放置垂直线或类似的东西。
这是可能的还是使用一些不同的组件可能会更好?
就像这张图片上一样,我需要像这条红线
I have SeekBar with 3 value (left, on center and right) and I will like to put some mark where progess level are, e.g. on center to put vertical line over bar or something like that.
Is this possible or it's might be better to use some different component?
Like on this image, I need something like this red line
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 setBackgroundDrawable(Drawable d)。
将您想要的标签内容保存为 png 图像,然后将其添加到项目中的资源中。
这是我使用的一些代码,其中我的图像是 android 启动器图标:
You can use the setBackgroundDrawable(Drawable d).
Save an image of what you want the labels to be in a png image then add it to your resources in your project.
Here is some code I used, where my image was the android launcher icon:
如果有人现在提出这个问题:同时有一个离散的 SeekBar,它完全符合所质疑的内容:它显示离散点,可以选择这些点作为标记。
If someone reaches this question now: In the meanwhile there is a discrete SeekBar, that does exactly, what was questioned: It displays the discrete points, that can be chosen as marks.