That fuck shit the fascists are using
1<?xml version="1.0" encoding="utf-8"?>
2<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
3 xmlns:tools="http://schemas.android.com/tools"
4 tools:viewBindingIgnore="true"
5 xmlns:app="http://schemas.android.com/apk/res-auto"
6 android:layout_width="match_parent"
7 android:layout_height="wrap_content"
8 android:paddingHorizontal="12dp"
9 android:paddingBottom="12dp">
10
11 <androidx.appcompat.widget.AppCompatImageView
12 android:layout_width="wrap_content"
13 android:layout_height="wrap_content"
14 android:tint="@color/signal_accent_primary"
15 app:layout_constraintEnd_toEndOf="parent"
16 app:layout_constraintStart_toStartOf="parent"
17 app:layout_constraintTop_toTopOf="parent"
18 app:srcCompat="@drawable/tooltip_arrow_up" />
19
20 <androidx.appcompat.widget.AppCompatImageView
21 android:id="@+id/bubble"
22 android:layout_width="0dp"
23 android:layout_height="0dp"
24 android:layout_marginTop="12dp"
25 app:layout_constraintBottom_toBottomOf="parent"
26 app:layout_constraintEnd_toEndOf="parent"
27 app:layout_constraintStart_toStartOf="parent"
28 app:layout_constraintTop_toTopOf="parent"
29 app:layout_constraintWidth_max="295dp"
30 app:srcCompat="@drawable/chat_wallpaper_preview_bubble_8"
31 app:tint="@color/signal_accent_primary" />
32
33 <androidx.appcompat.widget.AppCompatImageView
34 android:id="@+id/icon"
35 android:layout_width="44dp"
36 android:layout_height="44dp"
37 android:layout_marginStart="12dp"
38 android:layout_marginTop="7dp"
39 android:layout_marginEnd="10dp"
40 android:layout_marginBottom="7dp"
41 android:scaleType="centerInside"
42 app:layout_constraintBottom_toBottomOf="@id/bubble"
43 app:layout_constraintEnd_toStartOf="@id/text"
44 app:layout_constraintHorizontal_chainStyle="packed"
45 app:layout_constraintStart_toStartOf="@id/bubble"
46 app:layout_constraintTop_toTopOf="@id/bubble" />
47
48 <TextView
49 android:id="@+id/text"
50 android:layout_width="0dp"
51 android:layout_height="wrap_content"
52 android:layout_marginTop="7dp"
53 android:layout_marginEnd="12dp"
54 android:text="@string/CustomChatColorCreatorFragment__drag_to_change_the_direction_of_the_gradient"
55 android:textAppearance="@style/Signal.Text.Body"
56 android:textColor="@color/white"
57 app:layout_constraintEnd_toEndOf="@id/bubble"
58 app:layout_constraintStart_toEndOf="@id/icon"
59 app:layout_constraintTop_toTopOf="@id/bubble" />
60
61
62</androidx.constraintlayout.widget.ConstraintLayout>