day2_commit_1.4_strings

This commit is contained in:
EgorVorobev 2025-02-19 10:45:18 +03:00
parent 265eb29b99
commit 1afc51cab6
2 changed files with 13 additions and 9 deletions

View File

@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp">
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:gravity="center"
android:padding="16dp"
android:background="@android:color/white">
<!-- Поле для ФИО -->
<TextView
android:id="@+id/fullname"
@ -13,7 +13,7 @@
android:layout_height="wrap_content"
android:text="Имя Фамилия"
android:textSize="18sp"
android:visibility="gone" />
android:visibility="visible" />
<!-- Фото пользователя -->
<ImageView
@ -52,7 +52,11 @@
android:id="@+id/refresh"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/refresh" />
android:backgroundTint="@color/colorPrimary"
android:text="@string/refresh"
android:textColor="@android:color/white"
android:padding="12dp"
android:layout_marginBottom="16dp"/>
<Button
android:id="@+id/scan"

View File

@ -31,7 +31,7 @@
<!-- Строки для экрана сканирования QR-кода -->
<string name="qr_scan_success">Успешно</string>
<string name="qr_scan_failure">Что-то пошло не так</string>
<string name="qr_scan_cancelled">Вход был отменён/Operation was cancelled</string>
<string name="qr_scan_cancelled">Вход был отменён / Operation was cancelled</string>
</resources>