2012-07-19 21:22:03 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2012-07-31 23:27:58 +00:00
|
|
|
|
2012-07-19 21:22:03 +00:00
|
|
|
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<org.thoughtcrime.securesms.components.RecipientsPanel
|
|
|
|
android:id="@+id/recipients"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/layout_container"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:background="@drawable/white_background"
|
|
|
|
android:gravity="bottom">
|
|
|
|
|
|
|
|
<fragment
|
|
|
|
android:id="@+id/fragment_content"
|
|
|
|
android:name="org.thoughtcrime.securesms.ConversationFragment"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:layout_above="@+id/bottom_container" />
|
|
|
|
|
|
|
|
<ScrollView android:id="@id/bottom_container"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignParentBottom="true">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="fill_parent"
|
2012-09-09 23:10:46 +00:00
|
|
|
android:layout_height="wrap_content"
|
2012-07-19 21:22:03 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="5dip"
|
|
|
|
android:background="#fff">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/attachment_editor"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:visibility="gone">
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/attachment_thumbnail"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="150dip"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:gravity="center_vertical">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/remove_image_button"
|
|
|
|
style="?android:attr/buttonStyleSmall"
|
|
|
|
android:layout_width="100dip"
|
|
|
|
android:layout_height="50dip"
|
2012-09-08 03:03:23 +00:00
|
|
|
android:text="@string/remove" />
|
2012-07-19 21:22:03 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View android:background="#eeeeee"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="1dp" />
|
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/bottom_panel"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="5dip"
|
|
|
|
android:paddingLeft="5dip"
|
|
|
|
android:paddingRight="5dip"
|
|
|
|
>
|
|
|
|
|
|
|
|
<EditText
|
|
|
|
android:id="@+id/embedded_text_editor"
|
|
|
|
android:textColor="@android:color/black"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1.0"
|
|
|
|
android:autoText="true"
|
|
|
|
android:capitalize="sentences"
|
|
|
|
android:nextFocusRight="@+id/send_button"
|
2012-09-08 03:03:23 +00:00
|
|
|
android:hint="@string/type_message"
|
2012-07-19 21:22:03 +00:00
|
|
|
android:maxLines="4"
|
|
|
|
android:inputType="textShortMessage|textAutoCorrect|textCapSentences|textMultiLine"
|
|
|
|
android:imeOptions="actionSend|flagNoEnterAction"
|
|
|
|
android:maxLength="1000"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<Button android:id="@+id/send_button"
|
|
|
|
android:layout_marginLeft="5dip"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:nextFocusLeft="@+id/embedded_text_editor"
|
2012-09-08 03:03:23 +00:00
|
|
|
android:text="@string/send2"
|
2012-07-31 00:51:31 +00:00
|
|
|
android:padding="8dip"
|
2012-07-19 21:22:03 +00:00
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView android:id="@+id/space_left"
|
|
|
|
android:paddingLeft="5dip"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="160/160 (1)"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
</RelativeLayout>
|
|
|
|
</LinearLayout>
|