MultiSmsSender/res/layout/main.xml

38 lines
1.5 KiB
XML
Raw Normal View History

2009-10-22 14:26:02 +02:00
<?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">
2010-01-22 15:21:33 +01:00
2009-10-22 14:26:02 +02:00
<Button android:background="@drawable/ic_launcher_contacts"
android:id="@+id/contacts" android:layout_height="wrap_content"
android:layout_width="wrap_content"></Button>
2010-01-22 15:21:33 +01:00
2009-10-22 14:26:02 +02:00
<EditText android:id="@+id/numbers" android:layout_height="wrap_content"
android:layout_width="fill_parent" android:hint="@string/to"
android:maxLines="2" />
2010-01-22 15:21:33 +01:00
2009-10-22 14:26:02 +02:00
</LinearLayout>
2010-01-22 15:21:33 +01:00
2009-10-22 14:26:02 +02:00
<EditText android:id="@+id/editor" android:layout_width="fill_parent"
android:layout_height="0dip" android:autoText="true"
2009-10-22 14:26:02 +02:00
android:capitalize="sentences" android:layout_weight="1"
2011-03-01 22:24:21 +01:00
android:hint="@string/entermessage"
android:nextFocusRight="@+id/send"
android:inputType="textShortMessage|textAutoCorrect|textCapSentences|textMultiLine"
android:maxLength="2000">
2009-10-22 14:26:02 +02:00
<requestFocus />
</EditText>
2010-01-22 15:21:33 +01:00
<CheckBox android:text="@string/enabledelivery" android:id="@+id/deliveryCheckBox"
android:layout_width="wrap_content" android:layout_height="wrap_content" android:checked="true"></CheckBox>
2009-10-22 14:26:02 +02:00
<Button android:text="@string/send" android:layout_width="fill_parent"
android:layout_height="wrap_content" android:id="@+id/send">
</Button>
2010-01-22 15:21:33 +01:00
2009-10-22 14:26:02 +02:00
</LinearLayout>