<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/root"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:padding="16dp"
android:orientation="vertical">
<EditText
android:id="@+id/inputText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Enter text to speak"
android:inputType="textMultiLine"
android:minLines="3"/>
<Button
android:id="@+id/speakButton"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Speak"
android:layout_marginTop="12dp"/>
<TextView
android:id="@+id/statusText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Status: (not initialized)"
android:layout_marginTop="12dp"/>
</LinearLayout>