summaryrefslogtreecommitdiff
path: root/src/ui/android/res/layout/input_box.xml
blob: 7a5a9ce9979f149b1f071c432373a45befb32b86 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:background="@drawable/first_person_utterance_bg" >

	<EditText
	    android:id="@+id/input_text"
		android:layout_height="wrap_content"
		android:layout_width="wrap_content"
		android:layout_marginBottom="16dp"
		android:layout_gravity="left"
		android:padding="8dp"
		android:textSize="20sp"
		android:inputType="text"
		android:background="@drawable/first_person_utterance_bg"
		/>

</RelativeLayout>