-
Notifications
You must be signed in to change notification settings - Fork 0
/
activity_main.xml
29 lines (25 loc) · 996 Bytes
/
activity_main.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:id="@+id/input_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Enter text to translate" />
<Button
android:id="@+id/translate_button"
android:layout_below="@id/input_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Translate" />
<TextView
android:id="@+id/translated_text"
android:layout_below="@id/translate_button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:textSize="18sp"
android:textColor="#000000"
android:textStyle="bold"
android:paddingTop="20dp"
android:paddingBottom="20dp" />
</RelativeLayout>