I have to design vertical seekbar for equalizer app. My design look like this. How can i create this layout. I have created vertical Seekar using this library http://560b.sakura.ne.jp/android/VerticalSlidebarExample.zip
I want to achieve this
but i got this second image, thumbs are vertical but their progress is showing horizontal
xml desing
<com.devmob.verticalseekbar.VerticalSeekBar
android:id="@+id/sixty"
android:layout_width="0dp"
android:layout_weight="20"
android:layout_height="300dp" />
<com.devmob.verticalseekbar.VerticalSeekBar
android:id="@+id/twothirty"
android:layout_width="0dp"
android:layout_weight="20"
android:layout_height="300dp" />
<com.devmob.verticalseekbar.VerticalSeekBar
android:id="@+id/nineten"
android:layout_width="0dp"
android:layout_weight="20"
android:layout_height="300dp" />
<com.devmob.verticalseekbar.VerticalSeekBar
android:id="@+id/threek"
android:layout_width="0dp"
android:layout_weight="20"
android:layout_height="300dp" />
<com.devmob.verticalseekbar.VerticalSeekBar
android:id="@+id/fourteenk"
android:layout_width="0dp"
android:layout_weight="20"
android:layout_height="300dp" />
Edit also tried https://github.com/AndroSelva/Vertical-SeekBar-Android but it shows thumb on the left side, I want the thumb to be on the progressbar not left or right.