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:app="http://schemas.android.com/apk/res-auto"
4 tools:viewBindingIgnore="true"
5 xmlns:tools="http://schemas.android.com/tools"
6 android:layout_width="275dp"
7 android:layout_height="wrap_content"
8 android:clipChildren="false"
9 android:clipToPadding="false"
10 android:paddingBottom="5dp">
11
12 <View
13 android:id="@+id/bottom_arrow"
14 android:layout_width="24dp"
15 android:layout_height="24dp"
16 android:layout_marginTop="24dp"
17 android:background="@color/core_black"
18 android:rotation="45"
19 app:layout_constraintBottom_toBottomOf="@id/bubble"
20 app:layout_constraintEnd_toEndOf="parent"
21 app:layout_constraintStart_toStartOf="parent"
22 app:layout_constraintTop_toBottomOf="@id/bubble" />
23
24 <com.google.android.material.card.MaterialCardView
25 android:id="@+id/bubble"
26 android:layout_width="0dp"
27 android:layout_height="0dp"
28 android:alpha="0.9"
29 app:cardBackgroundColor="@color/core_black"
30 app:cardCornerRadius="12dp"
31 app:cardElevation="0dp"
32 app:layout_constraintBottom_toBottomOf="@id/url"
33 app:layout_constraintEnd_toEndOf="parent"
34 app:layout_constraintStart_toStartOf="parent"
35 app:layout_constraintTop_toTopOf="@id/visit_link" />
36
37 <TextView
38 android:id="@+id/visit_link"
39 android:layout_width="0dp"
40 android:layout_height="wrap_content"
41 android:maxLines="1"
42 android:paddingHorizontal="16dp"
43 android:paddingTop="14dp"
44 android:text="@string/StoriesLinkPopup__visit_link"
45 android:textAppearance="@style/TextAppearance.Signal.Body2.Bold"
46 android:textColor="@color/core_white"
47 app:layout_constraintEnd_toStartOf="@id/chevron"
48 app:layout_constraintStart_toStartOf="parent"
49 app:layout_constraintTop_toTopOf="parent" />
50
51 <TextView
52 android:id="@+id/url"
53 android:layout_width="0dp"
54 android:layout_height="wrap_content"
55 android:ellipsize="end"
56 android:maxLines="1"
57 android:paddingHorizontal="16dp"
58 android:paddingTop="1dp"
59 android:paddingBottom="15dp"
60 android:textAppearance="@style/TextAppearance.Signal.Caption"
61 android:textColor="@color/core_white"
62 app:layout_constraintEnd_toStartOf="@id/chevron"
63 app:layout_constraintStart_toStartOf="parent"
64 app:layout_constraintTop_toBottomOf="@id/visit_link"
65 tools:text="https://www.signal.org/blog/entry/20/20/20/20/20" />
66
67 <ImageView
68 android:id="@+id/chevron"
69 android:layout_width="16dp"
70 android:layout_height="16dp"
71 android:layout_marginEnd="16dp"
72 android:importantForAccessibility="no"
73 app:layout_constraintBottom_toBottomOf="@id/bubble"
74 app:layout_constraintEnd_toEndOf="@id/bubble"
75 app:layout_constraintTop_toTopOf="@id/bubble"
76 app:srcCompat="@drawable/exo_ic_chevron_right" />
77
78</androidx.constraintlayout.widget.ConstraintLayout>