35 lines
1.4 KiB
XML
35 lines
1.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical" android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent">
|
|
<LinearLayout android:layout_height="wrap_content"
|
|
android:layout_gravity="center_vertical" android:gravity="center_horizontal"
|
|
android:orientation="horizontal" android:layout_width="fill_parent">
|
|
|
|
<Button android:background="@drawable/ic_launcher_contacts"
|
|
android:id="@+id/contacts" android:layout_height="wrap_content"
|
|
android:layout_width="wrap_content"></Button>
|
|
|
|
<EditText android:id="@+id/numbers" android:layout_height="wrap_content"
|
|
android:layout_width="fill_parent" android:hint="@string/to"
|
|
android:maxLines="2" />
|
|
|
|
</LinearLayout>
|
|
|
|
<EditText android:id="@+id/editor" android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent" android:autoText="true"
|
|
android:capitalize="sentences" android:layout_weight="1"
|
|
android:hint="@string/entermessage">
|
|
<requestFocus />
|
|
</EditText>
|
|
|
|
<CheckBox android:text="@string/enabledelivery" android:id="@+id/deliveryCheckBox"
|
|
android:layout_width="wrap_content" android:layout_height="wrap_content" android:checked="true"></CheckBox>
|
|
<Button android:text="@string/send" android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content" android:id="@+id/send">
|
|
</Button>
|
|
|
|
|
|
|
|
</LinearLayout>
|