51 lines
1.6 KiB
XML
51 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:paddingLeft="16dp"
|
|
android:paddingRight="16dp"
|
|
android:paddingTop="16dp"
|
|
android:orientation="vertical"
|
|
tools:context="com.tutpro.baresip.MessageActivity" >
|
|
|
|
<TextView
|
|
android:id="@+id/messageToTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="20sp"
|
|
android:textColor="@android:color/black"
|
|
android:text="Message to ..." >
|
|
</TextView>
|
|
|
|
<AutoCompleteTextView
|
|
android:id="@+id/receiver"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:inputType="textEmailAddress"
|
|
android:textSize="20sp"
|
|
android:hint="Contact name or SIP URI" >
|
|
<requestFocus />
|
|
</AutoCompleteTextView>
|
|
|
|
<EditText
|
|
android:id="@+id/text"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:textSize="20sp"
|
|
android:inputType="textMultiLine"
|
|
android:scrollHorizontally="false"
|
|
android:hint="Message">
|
|
</EditText>
|
|
|
|
<ImageButton
|
|
android:id="@+id/sendButton"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:src="@drawable/send"
|
|
android:background="@null" >
|
|
</ImageButton>
|
|
|
|
</LinearLayout>
|