0

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

  • do you want to add some custom image or you want to disappear only ? – param Jul 23 '16 at 08:46
  • 1
    Possible 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 Answers2

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
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