44 lines
1.5 KiB
XML
44 lines
1.5 KiB
XML
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="match_parent"
|
||
android:orientation="vertical"
|
||
android:padding="16dp">
|
||
|
||
<TextView
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:text="Введите логин сотрудника:"
|
||
android:textSize="18sp"
|
||
android:layout_marginBottom="8dp" />
|
||
|
||
<EditText
|
||
android:id="@+id/employee_login"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:hint="Логин сотрудника"
|
||
android:inputType="text" />
|
||
|
||
<Button
|
||
android:id="@+id/view_employee_info"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:text="Просмотреть информацию о сотруднике"
|
||
android:layout_marginTop="16dp" />
|
||
|
||
<TextView
|
||
android:id="@+id/employee_info"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginTop="16dp"
|
||
android:textSize="16sp"
|
||
android:visibility="gone" />
|
||
|
||
<Button
|
||
android:id="@+id/toggle_access"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="wrap_content"
|
||
android:text="Блокировать/Разблокировать доступ"
|
||
android:layout_marginTop="16dp"
|
||
android:visibility="gone" />
|
||
|
||
</LinearLayout> |