forked from jens/Automation
72 lines
2.4 KiB
XML
72 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_margin="10dp" >
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="vertical" >
|
|
|
|
<Button
|
|
android:id="@+id/bImportNumberFromContacts"
|
|
android:drawableLeft="@drawable/contacts"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:drawablePadding="10dp"
|
|
android:text="@string/importNumberFromContacts"
|
|
/>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/phoneNumber" />
|
|
|
|
<EditText
|
|
android:id="@+id/etPhoneNumber"
|
|
android:layout_marginBottom="10dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:inputType="phone" >
|
|
|
|
<requestFocus />
|
|
</EditText>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/textToSend" />
|
|
|
|
<EditText
|
|
android:id="@+id/etSendTextMessage"
|
|
android:layout_marginBottom="10dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:ems="10"
|
|
android:inputType="textShortMessage|textMultiLine" >
|
|
</EditText>
|
|
|
|
<TextView
|
|
android:id="@+id/tvTextMessageAnnotations"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="0dip"
|
|
android:text="@string/textMessageAnnotations" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvLegend"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/urlLegend" />
|
|
|
|
<Button
|
|
android:id="@+id/bSaveSendTextMessage"
|
|
android:layout_marginTop="15dp"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/save" />
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView> |