That fuck shit the fascists are using
1<?xml version="1.0" encoding="utf-8"?>
2<androidx.constraintlayout.widget.ConstraintLayout
3 xmlns:android="http://schemas.android.com/apk/res/android"
4 tools:viewBindingIgnore="true"
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 <TextView
11 android:id="@+id/debug_log_warning_banner"
12 android:layout_width="0dp"
13 android:layout_height="wrap_content"
14 android:padding="8dp"
15 android:text="@string/SubmitDebugLogActivity_this_log_will_be_posted_publicly_online_for_contributors"
16 android:textColor="@color/core_black"
17 android:background="@color/core_yellow"
18 android:visibility="gone"
19 app:layout_constraintTop_toTopOf="parent"
20 app:layout_constraintStart_toStartOf="parent"
21 app:layout_constraintEnd_toEndOf="parent"
22 tools:visibility="visible"/>
23
24 <TextView
25 android:id="@+id/debug_log_edit_banner"
26 android:layout_width="0dp"
27 android:layout_height="0dp"
28 android:padding="8dp"
29 android:gravity="center"
30 android:text="@string/SubmitDebugLogActivity_tap_a_line_to_delete_it"
31 android:textColor="@color/core_white"
32 android:fontFamily="sans-serif-medium"
33 android:background="@color/core_ultramarine"
34 android:visibility="gone"
35 app:layout_constraintTop_toTopOf="@id/debug_log_warning_banner"
36 app:layout_constraintBottom_toBottomOf="@id/debug_log_warning_banner"
37 app:layout_constraintStart_toStartOf="parent"
38 app:layout_constraintEnd_toEndOf="parent" />
39
40 <androidx.constraintlayout.widget.Barrier
41 android:id="@+id/debug_log_header_barrier"
42 android:layout_width="wrap_content"
43 android:layout_height="wrap_content"
44 app:barrierDirection="bottom"
45 app:constraint_referenced_ids="debug_log_warning_banner,debug_log_edit_banner" />
46
47 <androidx.recyclerview.widget.RecyclerView
48 android:id="@+id/debug_log_lines"
49 android:layout_width="match_parent"
50 android:layout_height="0dp"
51 android:layout_marginBottom="8dp"
52 android:scrollbars="vertical"
53 app:layout_constraintTop_toBottomOf="@id/debug_log_header_barrier"
54 app:layout_constraintBottom_toTopOf="@id/debug_log_submit_button"/>
55
56 <ImageButton
57 android:id="@+id/debug_log_scroll_to_top"
58 android:layout_width="wrap_content"
59 android:layout_height="wrap_content"
60 android:layout_marginEnd="8dp"
61 android:layout_marginTop="16dp"
62 android:padding="5dp"
63 android:background="@drawable/circle_tintable"
64 app:tint="@color/grey_600"
65 android:elevation="1dp"
66 app:srcCompat="@drawable/ic_chevron_down_20"
67 android:scaleY="-1"
68 app:layout_constraintEnd_toEndOf="parent"
69 app:layout_constraintTop_toBottomOf="@id/debug_log_warning_banner"/>
70
71 <ImageButton
72 android:id="@+id/debug_log_scroll_to_bottom"
73 android:layout_width="wrap_content"
74 android:layout_height="wrap_content"
75 android:layout_marginEnd="8dp"
76 android:layout_marginBottom="16dp"
77 android:padding="5dp"
78 android:background="@drawable/circle_tintable"
79 android:elevation="1dp"
80 app:tint="@color/grey_600"
81 app:srcCompat="@drawable/ic_chevron_down_20"
82 app:layout_constraintEnd_toEndOf="parent"
83 app:layout_constraintBottom_toTopOf="@id/debug_log_submit_button"/>
84
85 <org.tm.archive.util.views.CircularProgressMaterialButton
86 android:id="@+id/debug_log_submit_button"
87 android:layout_width="0dp"
88 android:layout_height="wrap_content"
89 android:layout_gravity="center_horizontal"
90 android:layout_margin="8dp"
91 android:visibility="gone"
92 app:circularProgressMaterialButton__label="@string/SubmitDebugLogActivity_submit"
93 app:layout_constraintStart_toStartOf="parent"
94 app:layout_constraintEnd_toEndOf="parent"
95 app:layout_constraintBottom_toBottomOf="parent"
96 tools:visibility="visible"/>
97
98 <org.tm.archive.components.ProgressCard
99 android:id="@+id/debug_log_progress_card"
100 android:layout_width="wrap_content"
101 android:layout_height="wrap_content"
102 android:visibility="gone"
103 app:cardCornerRadius="18dp"
104 app:layout_constraintBottom_toBottomOf="parent"
105 app:layout_constraintEnd_toEndOf="parent"
106 app:layout_constraintStart_toStartOf="parent"
107 app:layout_constraintTop_toTopOf="parent"
108 tools:visibility="visible" />
109
110</androidx.constraintlayout.widget.ConstraintLayout>