mirror of
https://github.com/ArcaneChat/android.git
synced 2026-07-03 14:05:24 +02:00
37 lines
1.2 KiB
XML
37 lines
1.2 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:orientation="vertical"
|
|
android:gravity="center_horizontal"
|
|
tools:context=".WelcomeActivity">
|
|
|
|
<androidx.legacy.widget.Space
|
|
android:layout_weight="2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"/>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"
|
|
android:layout_weight="6"
|
|
android:layout_marginStart="24dp"
|
|
android:layout_marginEnd="24dp"
|
|
android:orientation="vertical">
|
|
|
|
<com.journeyapps.barcodescanner.CompoundBarcodeView
|
|
android:id="@+id/zxing_barcode_scanner"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_alignParentBottom="true" />
|
|
|
|
</RelativeLayout>
|
|
|
|
<androidx.legacy.widget.Space
|
|
android:layout_weight="2"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dp"/>
|
|
|
|
</LinearLayout>
|