2015-11-19 10:21:19 -08:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
2022-05-19 16:26:03 -04:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1">
|
|
|
|
|
|
|
|
<org.signal.qr.QrScannerView
|
|
|
|
android:id="@+id/scanner"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/overlay"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:weightSum="2">
|
2015-11-19 10:21:19 -08:00
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.ShapeScrim
|
|
|
|
android:layout_width="match_parent"
|
2022-05-19 16:26:03 -04:00
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1" />
|
2015-11-19 10:21:19 -08:00
|
|
|
|
2022-05-19 16:26:03 -04:00
|
|
|
<LinearLayout
|
2015-11-19 10:21:19 -08:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_weight="1"
|
2016-01-13 08:57:24 -05:00
|
|
|
android:background="?android:windowBackground"
|
2022-05-19 16:26:03 -04:00
|
|
|
android:gravity="center"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingStart="16dp"
|
|
|
|
android:paddingEnd="16dp">
|
2015-11-19 10:21:19 -08:00
|
|
|
|
2020-11-09 09:12:28 -05:00
|
|
|
<androidx.appcompat.widget.AppCompatImageView
|
|
|
|
android:id="@+id/devices"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2022-05-19 16:26:03 -04:00
|
|
|
android:layout_marginBottom="16dp"
|
|
|
|
android:src="@drawable/ic_devices_white"
|
2020-11-09 09:12:28 -05:00
|
|
|
android:tint="@color/core_grey_25"
|
2022-05-19 16:26:03 -04:00
|
|
|
android:transitionName="devices" />
|
2015-11-19 10:21:19 -08:00
|
|
|
|
2022-05-19 16:26:03 -04:00
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/device_add_fragment__scan_the_qr_code_displayed_on_the_device_to_link"
|
|
|
|
android:textColor="?android:textColorSecondary" />
|
2015-11-19 10:21:19 -08:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</FrameLayout>
|