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

42 lines
1.4 KiB
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:18:44 +04:00
<EditText
android:id="@+id/etInput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Введите текст"
android:inputType="text" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:layout_marginTop="16dp">
<Button
android:id="@+id/btnSave"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Сохранить" />
<Button
android:id="@+id/btnLoad"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="Загрузить" />
</LinearLayout>
2025-09-24 14:01:30 +04:00
<TextView
2025-09-24 14:18:44 +04:00
android:id="@+id/tvResult"
2025-09-24 13:25:08 +04:00
android:layout_width="match_parent"
android:layout_height="wrap_content"
2025-09-24 14:18:44 +04:00
android:layout_marginTop="24dp"
android:text="Здесь появится содержимое файла"
2025-09-24 14:01:30 +04:00
android:textSize="18sp" />
2025-09-24 13:25:08 +04:00
</LinearLayout>