Path: blob/v3_openjdk/app_pojavlauncher/src/main/res/layout/view_progress.xml
2130 views
<?xml version="1.0" encoding="utf-8"?>1<!-- Change the layout to merge tag once done -->2<androidx.constraintlayout.widget.ConstraintLayout3xmlns:android="http://schemas.android.com/apk/res/android"4xmlns:app="http://schemas.android.com/apk/res-auto"5xmlns:tools="http://schemas.android.com/tools"6android:layout_width="match_parent"7android:layout_height="match_parent"8910>111213<ProgressBar14android:id="@+id/progress_generic_progressbar"15android:layout_width="@dimen/_40sdp"16android:layout_height="@dimen/_30sdp"17app:layout_constraintBottom_toBottomOf="parent"18app:layout_constraintStart_toStartOf="parent" />1920<TextView21android:id="@+id/progress_textview"22android:layout_width="0dp"23android:layout_height="0dp"24android:gravity="center"25android:textSize="@dimen/_12ssp"26android:textColor="@android:color/white"27android:paddingEnd="@dimen/_40sdp"2829tools:text="5 tasks in progress"3031app:layout_constraintBottom_toBottomOf="parent"32app:layout_constraintEnd_toStartOf="@id/progress_flip_arrow"33app:layout_constraintStart_toEndOf="@+id/progress_generic_progressbar"34app:layout_constraintTop_toTopOf="@+id/progress_generic_progressbar"35tools:ignore="RtlSymmetry" />3637<ImageView38android:id="@+id/progress_flip_arrow"39android:layout_width="@dimen/padding_extra_large"40android:layout_height="@dimen/padding_extra_large"41android:layout_marginEnd="@dimen/_8sdp"42app:layout_constraintBottom_toBottomOf="@id/progress_generic_progressbar"43app:layout_constraintEnd_toEndOf="parent"44app:layout_constraintTop_toTopOf="@id/progress_generic_progressbar"45app:srcCompat="@drawable/spinner_arrow" />4647<LinearLayout48android:id="@+id/progress_linear_layout"49android:layout_width="match_parent"50android:layout_height="wrap_content"51android:orientation="vertical"52android:visibility="gone"53android:paddingHorizontal="@dimen/padding_heavy"54android:paddingTop="@dimen/padding_heavy"55android:weightSum="3"565758app:layout_constraintBottom_toTopOf="@+id/progress_generic_progressbar"59tools:layout_height="@dimen/_100sdp"60tools:visibility="visible"61>62</LinearLayout>6364</androidx.constraintlayout.widget.ConstraintLayout>6566