Vertical Seekbar Not Functioning

136 views Asked by At

XML Code

enter image description here

Design View

enter image description here

Me and my friend tried making a vertical seekbar, however it does not seem to be functioning properly. This is our first time using Android Studio, is there anything else we should be adding to the code?

1

There are 1 answers

0
Matrix On

try use android:rotation="-90" to the seekbar

       <SeekBar
        android:id="@+id/seek"
        android:layout_width="261dp"
        android:layout_height="26dp"
        android:progress="0"
        android:rotation="-90"
        />