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

27 lines
930 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 13:25:08 +04:00
<EditText
android:id="@+id/etInput"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Введите текст" />
<Button
android:id="@+id/btnApply"
2025-09-24 12:26:38 +04:00
android:layout_width="wrap_content"
android:layout_height="wrap_content"
2025-09-24 13:25:08 +04:00
android:layout_marginTop="12dp"
android:text="Преобразовать" />
2025-09-24 12:26:38 +04:00
2025-09-24 13:25:08 +04:00
<TextView
android:id="@+id/tvResult"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="24dp"
android:text="Здесь будет результат"
android:textSize="18sp" />
</LinearLayout>