Android Remove SeekBar Background
android, java, seekbar
Solution
Well I solved my own problem.
To remove the background, you have to create a blank drawable and set it to the progressDrawable:
satBar.setProgressDrawable(invisibleBackground);
Setting it to null doesn't seem to work.
Problem
Is there a way I can remove the background bar image in the SeekBar android widget? I just want it to show a slider with no progress bar behind it. Any help?