Files
labs-mobile-applications/app/src/main/res/layout/activity_main.xml
T

20 lines
668 B
XML
Raw Normal View History

2025-09-24 13:25:08 +04:00
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
2025-09-24 12:26:38 +04:00
android:layout_width="match_parent"
android:layout_height="match_parent"
2025-09-24 13:25:08 +04:00
android:orientation="vertical"
android:padding="16dp">
2025-09-24 12:26:38 +04:00
2025-09-24 14:29:16 +04:00
<Button
android:id="@+id/btnCamera"
android:layout_width="wrap_content"
2025-09-24 14:18:44 +04:00
android:layout_height="wrap_content"
2025-09-24 14:29:16 +04:00
android:text="Сделать фото" />
2025-09-24 14:18:44 +04:00
2025-09-24 14:29:16 +04:00
<ImageView
android:id="@+id/imageView"
2025-09-24 14:18:44 +04:00
android:layout_width="match_parent"
2025-09-24 14:29:16 +04:00
android:layout_height="0dp"
android:layout_weight="1"
android:layout_marginTop="16dp"
android:scaleType="centerCrop" />
2025-09-24 13:25:08 +04:00
</LinearLayout>