53 lines
1.9 KiB
XML
53 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<com.google.android.material.card.MaterialCardView
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="6dp"
|
|
app:cardCornerRadius="16dp"
|
|
app:cardElevation="8dp"
|
|
app:strokeWidth="2dp"
|
|
app:strokeColor="@color/primary"
|
|
android:padding="10dp"
|
|
|
|
android:backgroundTint="@android:color/white">
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="16dp">
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/scanTime"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="16sp"
|
|
android:textColor="@color/black"
|
|
android:textAlignment="center"
|
|
android:text="Время и дата сканирования: 17.02.2021 12:34" />
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/scannerId"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="16sp"
|
|
android:textColor="@color/black"
|
|
android:textAlignment="center"
|
|
android:layout_marginTop="8dp"
|
|
android:text="Считыватель: ID_12345" />
|
|
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/passType"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="16sp"
|
|
android:textColor="@color/black"
|
|
android:textAlignment="center"
|
|
android:layout_marginTop="8dp"
|
|
android:text="Тип прохода: Карта" />
|
|
</LinearLayout>
|
|
</com.google.android.material.card.MaterialCardView> |