That fuck shit the fascists are using
1<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout 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="match_parent"
7 android:layout_height="match_parent"
8 android:orientation="vertical">
9
10 <TextView
11 android:id="@+id/device_transfer_setup_fragment_verify_code_title"
12 android:layout_width="match_parent"
13 android:layout_height="wrap_content"
14 android:gravity="center"
15 android:text="@string/DeviceTransferSetup__verify_code"
16 android:textAppearance="@style/Signal.Text.Headline.Registration" />
17
18 <TextView
19 android:id="@+id/device_transfer_setup_fragment_verify_description"
20 android:layout_width="match_parent"
21 android:layout_height="wrap_content"
22 android:layout_marginTop="16dp"
23 android:gravity="center"
24 android:text="@string/DeviceTransferSetup__verify_that_the_code_below_matches_on_both_of_your_devices"
25 android:textAppearance="@style/TextAppearance.Signal.Body1" />
26
27 <Space
28 android:layout_width="match_parent"
29 android:layout_height="0dp"
30 android:layout_weight="1" />
31
32 <androidx.appcompat.widget.AppCompatTextView
33 android:id="@+id/device_transfer_setup_fragment_sas_verify_code"
34 android:layout_width="match_parent"
35 android:layout_height="wrap_content"
36 android:fontFamily="monospace"
37 android:gravity="center"
38 android:letterSpacing=".3"
39 android:lines="1"
40 android:minHeight="48dp"
41 app:autoSizeMaxTextSize="48sp"
42 app:autoSizeMinTextSize="12sp"
43 app:autoSizeTextType="uniform"
44 tools:ignore="UnusedAttribute"
45 tools:text="1234567" />
46
47 <Space
48 android:layout_width="match_parent"
49 android:layout_height="0dp"
50 android:layout_weight="1" />
51
52 <com.google.android.material.button.MaterialButton
53 android:id="@+id/device_transfer_setup_fragment_sas_verify_yes"
54 style="@style/Signal.Widget.Button.Large.Primary"
55 android:layout_width="match_parent"
56 android:layout_height="wrap_content"
57 android:layout_marginBottom="16dp"
58 android:text="@string/DeviceTransferSetup__continue" />
59
60 <com.google.android.material.button.MaterialButton
61 android:id="@+id/device_transfer_setup_fragment_sas_verify_no"
62 style="@style/Signal.Widget.Button.Medium.Secondary"
63 android:layout_width="match_parent"
64 android:layout_height="wrap_content"
65 android:text="@string/DeviceTransferSetup__the_numbers_do_not_match"
66 android:textColor="@color/signal_alert_primary" />
67
68</LinearLayout>