Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android: How to hide Seekbar progress?

The Seekbars got that blue progress indicator. In my case I just want to show a percentage progress in in a TextView, so I don't need it.

How can I hide the blue indicator for the Seekbar progress?

like image 419
Ilya Gazman Avatar asked Feb 17 '15 17:02

Ilya Gazman


2 Answers

Add android:progressDrawable="@android:color/transparent" in the layout file

like image 60
user840754 Avatar answered Sep 22 '22 09:09

user840754


just use

android:progressTint="@android/color:transparent"

it makes progress transparent.

like image 21
San99comx Avatar answered Sep 23 '22 09:09

San99comx