This commit is contained in:
Ваше Имя
2025-09-24 15:48:24 +04:00
parent 7b78d9bfc2
commit 3c9f2eaf15
8 changed files with 132 additions and 48 deletions
+12 -6
View File
@@ -4,17 +4,23 @@
android:orientation="vertical"
android:padding="16dp">
<EditText
android:id="@+id/etInput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Введите заметку" />
<Button
android:id="@+id/btnCamera"
android:id="@+id/btnAdd"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Сделать фото" />
android:layout_marginTop="12dp"
android:text="Добавить" />
<ImageView
android:id="@+id/imageView"
<androidx.recyclerview.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:layout_marginTop="16dp"
android:scaleType="centerCrop" />
android:layout_weight="1" />
</LinearLayout>