42 lines
1.4 KiB
XML
42 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical"
|
|
android:padding="10dp" >
|
|
|
|
<Spinner
|
|
android:id="@+id/sender_spinner"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" />
|
|
|
|
<i2p.bote.android.util.ContactsCompletionView
|
|
android:id="@+id/recipients"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content" >
|
|
|
|
<requestFocus />
|
|
</i2p.bote.android.util.ContactsCompletionView>
|
|
|
|
<EditText
|
|
android:id="@+id/subject"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:hint="@string/subject"
|
|
android:inputType="textEmailSubject" />
|
|
|
|
<EditText
|
|
android:id="@+id/message"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:hint="@string/compose_email"
|
|
android:inputType="textMultiLine" />
|
|
</LinearLayout>
|
|
|
|
</ScrollView> |