day2_commit.1.19_strings_edited_and_add_landscape_for_fragment_main
This commit is contained in:
parent
ee24f241db
commit
763eb5293c
120
app/src/main/res/layout-land/fragment_main.xml
Normal file
120
app/src/main/res/layout-land/fragment_main.xml
Normal file
@ -0,0 +1,120 @@
|
|||||||
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:orientation="horizontal"
|
||||||
|
android:gravity="bottom"
|
||||||
|
android:padding="16dp"
|
||||||
|
android:background="@android:color/white">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="250dp"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:orientation="vertical">
|
||||||
|
<!-- Поле для ФИО -->
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/fullname"
|
||||||
|
android:layout_width="100dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/fullname_label"
|
||||||
|
android:textSize="18sp"
|
||||||
|
android:layout_marginBottom="5dp"
|
||||||
|
android:visibility="gone" />
|
||||||
|
|
||||||
|
<!-- Фото пользователя. -->
|
||||||
|
<ImageView
|
||||||
|
android:id="@+id/photo"
|
||||||
|
android:layout_width="100dp"
|
||||||
|
android:layout_height="100dp"
|
||||||
|
android:layout_gravity="center"
|
||||||
|
android:contentDescription="@string/photo_description"
|
||||||
|
android:layout_marginBottom="5dp"
|
||||||
|
android:visibility="gone" />
|
||||||
|
|
||||||
|
<!-- Поле для должности -->
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/position"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="@string/position_label"
|
||||||
|
android:layout_marginBottom="5dp"
|
||||||
|
android:visibility="gone" />
|
||||||
|
|
||||||
|
<!-- Поле для даты последнего входа -->
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/lastEntry"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="2024-02-31 08:31"
|
||||||
|
android:layout_marginBottom="75dp"
|
||||||
|
android:visibility="gone" />
|
||||||
|
|
||||||
|
<!-- RecyclerView для списка проходов -->
|
||||||
|
<androidx.recyclerview.widget.RecyclerView
|
||||||
|
android:id="@+id/recyclerView"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_weight="1"
|
||||||
|
android:visibility="gone" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:orientation="vertical">
|
||||||
|
<!-- Кнопка обновления -->
|
||||||
|
<Button
|
||||||
|
android:id="@+id/refresh"
|
||||||
|
android:layout_width="280dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="center_horizontal"
|
||||||
|
android:text="@string/refresh"
|
||||||
|
android:backgroundTint="@color/colorPrimary"
|
||||||
|
android:textColor="@android:color/white"
|
||||||
|
android:padding="12dp"/>
|
||||||
|
|
||||||
|
<!-- Поле ошибки -->
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/error"
|
||||||
|
android:layout_width="280dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="center_horizontal"
|
||||||
|
android:gravity="center"
|
||||||
|
android:text="@string/error_placeholder"
|
||||||
|
android:textColor="@android:color/holo_red_dark"
|
||||||
|
android:visibility="gone" />
|
||||||
|
|
||||||
|
<!-- Кнопки -->
|
||||||
|
<Button
|
||||||
|
android:id="@+id/scan"
|
||||||
|
android:layout_width="280dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="center_horizontal"
|
||||||
|
android:text="@string/scan_qr_code"
|
||||||
|
android:backgroundTint="@color/colorPrimary"
|
||||||
|
android:textColor="@android:color/white"
|
||||||
|
android:visibility="gone" />
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/logout"
|
||||||
|
android:layout_width="280dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="center_horizontal"
|
||||||
|
android:text="@string/logout"
|
||||||
|
android:backgroundTint="@color/colorPrimary"
|
||||||
|
android:textColor="@android:color/white"
|
||||||
|
android:visibility="gone" />
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:id="@+id/admin_panel"
|
||||||
|
android:layout_width="280dp"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_gravity="center_horizontal"
|
||||||
|
android:text="@string/admin_panel"
|
||||||
|
android:backgroundTint="@color/colorPrimary"
|
||||||
|
android:visibility="gone" />
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
</LinearLayout>
|
@ -71,7 +71,7 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="0dp"
|
android:layout_height="0dp"
|
||||||
android:layout_weight="1"
|
android:layout_weight="1"
|
||||||
android:visibility="visible" />
|
android:visibility="gone" />
|
||||||
|
|
||||||
<!-- Кнопки -->
|
<!-- Кнопки -->
|
||||||
<Button
|
<Button
|
||||||
@ -98,7 +98,8 @@
|
|||||||
android:id="@+id/admin_panel"
|
android:id="@+id/admin_panel"
|
||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Admin Panel"
|
android:text="@string/admin_panel"
|
||||||
|
android:backgroundTint="@color/colorPrimary"
|
||||||
android:layout_marginTop="16dp"
|
android:layout_marginTop="16dp"
|
||||||
android:visibility="gone" />
|
android:visibility="gone" />
|
||||||
|
|
||||||
|
@ -34,4 +34,5 @@
|
|||||||
<string name="qr_scan_cancelled">Вход был отменён / Operation was cancelled</string>
|
<string name="qr_scan_cancelled">Вход был отменён / Operation was cancelled</string>
|
||||||
<string name="close_button">Закрыть</string>
|
<string name="close_button">Закрыть</string>
|
||||||
<string name="result">Результат</string>
|
<string name="result">Результат</string>
|
||||||
|
<string name="admin_panel" translatable="false">Admin Panel</string>
|
||||||
</resources>
|
</resources>
|
Loading…
x
Reference in New Issue
Block a user