I have a project to build android application use seekbar. I wanna the dot seekbar disapper is posible? if possible how to make the dot disappear. like this http://prntscr.com/bwgaok
Asked
Active
Viewed 512 times
0
-
do you want to add some custom image or you want to disappear only ? – param Jul 23 '16 at 08:46
-
1Possible duplicate of [How to hide/show thumb drawable in a SeekBar](http://stackoverflow.com/questions/20855815/how-to-hide-show-thumb-drawable-in-a-seekbar) – SaravInfern Jul 23 '16 at 08:46
2 Answers
1
I worked on this one and it works for me
Use this following library for circular seekbar
https://github.com/devadvance/circularseekbar
and give app:pointer_radius="0dp"
It will work better

Chintak Patel
- 748
- 6
- 24
-
which library you used for your seekbar, or you used this library ? – Chintak Patel Jul 25 '16 at 04:11
0
Have you tried seekBar.getThumb().mutate().setAlpha(0);
?
If you wish to make the seekBar "unclickable" use seekBar.setEnabled(false)

Joaquim Ley
- 4,038
- 2
- 24
- 42