Android SeekBar 拇指自定义
我想隐藏栏,只想显示拇指。我用 max-height=0dip 做到了,但它没有完全起作用。我还想在拇指上设置文本并使用多个图像创建拇指。例如,拇指按钮像图像一样并且具有文本,并且该按钮具有尾部下字,它随着行增量而增加。
I want to hide bar and only want to show thumb. I did it with max-height=0dip but it did not completely work. I also want to set text on thumb and create thumb with multiple images. For example thumb which i button like image and has text and this button has tail downword, which increases with row increment.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
关于删除背景,我设法通过以下方式做到这一点。这里,空白的可绘制对象是 1x1 像素的透明 png
您还可以使用以下方法更改可绘制对象:
要添加文本,我想您必须创建一个 自定义组件
Regarding removing the background, I managed to do this in the following way. Here, the blank drawable is a transparent png of 1x1 pixel
You can also change the drawable by using:
To add text, I guess you'll have to create a custom component
为了隐藏该栏,您可以使用十六进制颜色设置不透明度值。您只需添加正确的前缀即可。
我使用以下代码隐藏了seekBar:
其中前两个密码(即“00”)设置不透明度(alpha 百分比),其他六个(即“555555”)设置颜色。
查看这篇文章以获取更多信息和十六进制不透明度值列表:
了解 Android 上的颜色(六个字符)
In order to hide the bar, you can set opacity value using hex colors. You just need to add the right prefix.
I hid the seekBar using this code:
Where the first two ciphers (i.e. "00") set opaqueness (alpha percentage) and the other six (i.e. "555555") set the color.
Check this post for more information and a list of hex opacity values:
Understanding colors on Android (six characters)