|
|
@@ -4,6 +4,27 @@
|
|
|
android:layout_height="match_parent"
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
|
|
|
|
|
+ <View
|
|
|
+ android:id="@+id/guideline"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:visibility="invisible"
|
|
|
+ app:layout_constraintBottom_toTopOf="@id/download_wizard_navigation"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent" />
|
|
|
+
|
|
|
+ <ProgressBar
|
|
|
+ android:id="@+id/progress"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:indeterminate="true"
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
+ app:layout_constraintRight_toRightOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/guideline"
|
|
|
+ app:layout_constraintBottom_toTopOf="@id/download_wizard_navigation"
|
|
|
+ style="@style/Widget.AppCompat.ProgressBar.Horizontal" />
|
|
|
+
|
|
|
<androidx.constraintlayout.widget.ConstraintLayout
|
|
|
android:id="@+id/download_wizard_navigation"
|
|
|
android:layout_width="match_parent"
|