垂直进度条不能分配到布局的末尾

vertical progress bar cannot be assigned to end of the layout

我正在尝试实现垂直进度条。但是进度条似乎并没有移动到屏幕的右端。

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/idGestureContainer"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".zzzz_dummy.GestureEvents">

    <ProgressBar
        android:id="@+id/determinateBar"
        style="@android:style/Widget.ProgressBar.Horizontal"
        android:layout_width="500dp"
        android:layout_height="10dp"
        android:max="100"
        android:progress="50"
        android:rotation="270"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintTop_toTopOf="parent" />

</androidx.constraintlayout.widget.ConstraintLayout>

请任何人帮助我移动此进度条以开始和结束视图。我需要两者,一个用于音量,一个用于亮度。提前谢谢你。

好的,你可以做的一件事就是把它包起来。

<FrameLayout
        android:layout_width="20dp"
        android:layout_height="300dp"
        android:layout_marginEnd="50dp"
        app:layout_constraintBottom_toBottomOf="parent"
        app:layout_constraintEnd_toEndOf="parent" // for left
        // app:layout_constraintStart_toStartOf="parent" // for right
        app:layout_constraintTop_toTopOf="parent">

        <ProgressBar
            android:id="@+id/idVolumeControl"
            style="@android:style/Widget.ProgressBar.Horizontal"
            android:layout_width="290dp"
            android:layout_height="match_parent"
            android:max="100"
            android:progress="50"
            android:rotation="270" />

    </FrameLayout>