Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
PojavLauncherTeam
GitHub Repository: PojavLauncherTeam/PojavLauncher
Path: blob/v3_openjdk/app_pojavlauncher/src/main/res/layout/view_progress.xml
2130 views
1
<?xml version="1.0" encoding="utf-8"?>
2
<!-- Change the layout to merge tag once done -->
3
<androidx.constraintlayout.widget.ConstraintLayout
4
xmlns:android="http://schemas.android.com/apk/res/android"
5
xmlns:app="http://schemas.android.com/apk/res-auto"
6
xmlns:tools="http://schemas.android.com/tools"
7
android:layout_width="match_parent"
8
android:layout_height="match_parent"
9
10
11
>
12
13
14
<ProgressBar
15
android:id="@+id/progress_generic_progressbar"
16
android:layout_width="@dimen/_40sdp"
17
android:layout_height="@dimen/_30sdp"
18
app:layout_constraintBottom_toBottomOf="parent"
19
app:layout_constraintStart_toStartOf="parent" />
20
21
<TextView
22
android:id="@+id/progress_textview"
23
android:layout_width="0dp"
24
android:layout_height="0dp"
25
android:gravity="center"
26
android:textSize="@dimen/_12ssp"
27
android:textColor="@android:color/white"
28
android:paddingEnd="@dimen/_40sdp"
29
30
tools:text="5 tasks in progress"
31
32
app:layout_constraintBottom_toBottomOf="parent"
33
app:layout_constraintEnd_toStartOf="@id/progress_flip_arrow"
34
app:layout_constraintStart_toEndOf="@+id/progress_generic_progressbar"
35
app:layout_constraintTop_toTopOf="@+id/progress_generic_progressbar"
36
tools:ignore="RtlSymmetry" />
37
38
<ImageView
39
android:id="@+id/progress_flip_arrow"
40
android:layout_width="@dimen/padding_extra_large"
41
android:layout_height="@dimen/padding_extra_large"
42
android:layout_marginEnd="@dimen/_8sdp"
43
app:layout_constraintBottom_toBottomOf="@id/progress_generic_progressbar"
44
app:layout_constraintEnd_toEndOf="parent"
45
app:layout_constraintTop_toTopOf="@id/progress_generic_progressbar"
46
app:srcCompat="@drawable/spinner_arrow" />
47
48
<LinearLayout
49
android:id="@+id/progress_linear_layout"
50
android:layout_width="match_parent"
51
android:layout_height="wrap_content"
52
android:orientation="vertical"
53
android:visibility="gone"
54
android:paddingHorizontal="@dimen/padding_heavy"
55
android:paddingTop="@dimen/padding_heavy"
56
android:weightSum="3"
57
58
59
app:layout_constraintBottom_toTopOf="@+id/progress_generic_progressbar"
60
tools:layout_height="@dimen/_100sdp"
61
tools:visibility="visible"
62
>
63
</LinearLayout>
64
65
</androidx.constraintlayout.widget.ConstraintLayout>
66