android:id="@+id/gradientSeekBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:max="8"
android:progress="1"
android:rotation="270"
android:thumb="@drawable/thumb"
android:thumbOffset="0dp"
app:theme="@style/AppTheme"
tools:layout_editor_absoluteX="0dp"
tools:layout_editor_absoluteY="203dp">
My android studio res file for seekbar placment
Now, it's not just a vertical seekbar, what I have to do is to place that vertical seekbar on the full right of a mobile screen, as in the picture attached. There are things that we can do like rotating the view but I am not able to adjust the view to the full right of the screen as shown in the picture. Also, I have viewed many top apps on play store that have placed the seek bar in the middle, none of them are able to place the seek bar on the full right. Is there something simple, instead of rotating the view. About the code, I can't use static size because I need to support all size screens.