/
TON618OFF
/
Android-Studio-Using-Database
Обзор
Документация
Войти
/
TON618OFF
/
Android-Studio-Using-Database
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
app/src/main/res/layout/edit_book.xml
38 строк
2 KB
TON618OFF
release
21 ноя 2024, 20:43
21 ноя 2024, 20:43
5b843b5
Код
Авторство
О чём код?
<?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_width="match_parent" android:layout_height="match_parent"> <EditText android:id="@+id/editTextName" android:layout_width="0dp" android:layout_height="wrap_content" android:hint="Наименование" android:layout_margin="20dp" app:layout_constraintTop_toTopOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent" /> <EditText android:id="@+id/editTextAuthor" android:layout_width="0dp" android:layout_height="wrap_content" android:hint="Автор" android:layout_margin="20dp" app:layout_constraintTop_toBottomOf="@id/editTextName" app:layout_constraintStart_toStartOf="parent" app:layout_constraintEnd_toEndOf="parent" /> <Button android:id="@+id/btnSave" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Сохранить изменения" app:layout_constraintBottom_toBottomOf="parent" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" android:layout_marginBottom="20dp" /> </androidx.constraintlayout.widget.ConstraintLayout>