2021-10-01 20:19:42 +00:00
|
|
|
<?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"
|
2022-02-24 19:27:10 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2021-10-01 20:19:42 +00:00
|
|
|
android:layout_width="match_parent"
|
2022-02-24 19:27:10 +00:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
app:fitsSystemWindowsInsets="left|right"
|
|
|
|
tools:context=".installer.InstallerActivity">
|
2021-10-01 20:19:42 +00:00
|
|
|
|
|
|
|
<HorizontalScrollView
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_width="match_parent"
|
2021-10-12 20:06:17 +00:00
|
|
|
android:id="@+id/install_horizontal_scroller"
|
2021-10-01 20:19:42 +00:00
|
|
|
android:background="@color/black"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent">
|
|
|
|
<androidx.recyclerview.widget.RecyclerView
|
|
|
|
android:id="@+id/install_terminal"
|
2021-10-12 20:06:17 +00:00
|
|
|
android:background="@null"
|
2021-10-01 20:19:42 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
</HorizontalScrollView>
|
|
|
|
|
|
|
|
<com.google.android.material.progressindicator.LinearProgressIndicator
|
|
|
|
android:id="@+id/progress_bar"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:indeterminate="true"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent" />
|
|
|
|
</androidx.constraintlayout.widget.ConstraintLayout>
|