inverse-front/app/src/main/res/layout/fragment_qr_result.xml
2025-02-19 18:50:02 +03:00

32 lines
1.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:tools="http://schemas.android.com/tools">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:gravity="center"
android:layout_marginHorizontal="24dp">
<TextView
android:id="@+id/result"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="24sp"
tools:text="Успешно!"/>
<Button
android:foreground="?attr/selectableItemBackground"
android:textColor="@color/white"
android:layout_marginTop="16dp"
android:id="@+id/close"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/to_main_menu"
android:background="@drawable/main_button" />
</LinearLayout>
</androidx.constraintlayout.widget.ConstraintLayout>