Android SeekBar 标记值在哪里

发布于 2024-12-13 03:56:51 字数 272 浏览 1 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

伴我心暖 2024-12-20 03:56:51

您可以使用 setBackgroundDrawable(Drawable d)。
将您想要的标签内容保存为 png 图像,然后将其添加到项目中的资源中。

这是我使用的一些代码,其中我的图像是 android 启动器图标:

seekbar = (SeekBar) findViewById(R.id.seekBar1);
Resources r = getResources();
Drawable d = r.getDrawable(R.drawable.ic_launcher);
seekbar.setBackgroundDrawable(d);

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 = (SeekBar) findViewById(R.id.seekBar1);
Resources r = getResources();
Drawable d = r.getDrawable(R.drawable.ic_launcher);
seekbar.setBackgroundDrawable(d);
旧梦荧光笔 2024-12-20 03:56:51

如果有人现在提出这个问题:同时有一个离散的 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文