I am rather new to Android development (currently busy on my second app) so I hope I'm not asking a stupid question, however I've spent the last 2 hours looking for a solution for the following:
I would like to customize a Seekbar so it isn't the ugly orange color and has a nice looking thumb image.
So far I managed to replace the thumb and the progress image which is already 80%. However, I now have a seekbar that does not change color if any progress is made
Code I have so far:
Using xml Syntax Highlighting
- <SeekBar android:id="@+id/seek"
- android:thumb="@drawable/blue_thumb"
- android:progressDrawable="@drawable/blue_bar"
- android:layout_width="fill_parent"
- android:layout_below="@id/progress"
- android:layout_height="10px"
- android:paddingLeft="8px"
- android:paddingRight="8px"
- android:layout_toRightOf="@id/text"/>
Parsed in 0.001 seconds, using GeSHi 1.0.8.4
I've attached an image of my work so far.
Many thanks in advance for your replies!






