mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 10:35:19 +00:00
32 lines
1.1 KiB
XML
32 lines
1.1 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<ScrollView
|
||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="match_parent">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginStart="32dp"
|
||
|
android:layout_marginEnd="32dp"
|
||
|
android:orientation="vertical"
|
||
|
android:gravity="center_horizontal">
|
||
|
|
||
|
<TextView
|
||
|
android:id="@+id/explanationTextView"
|
||
|
style="@style/Signal.Text.Body"
|
||
|
android:layout_width="match_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="32dp"
|
||
|
android:text="@string/fragment_qr_code_explanation" />
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/qrCodeImageView"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_marginTop="24dp"
|
||
|
android:background="@color/white" />
|
||
|
|
||
|
</LinearLayout>
|
||
|
|
||
|
</ScrollView>
|