49 lines
1.7 KiB
XML
49 lines
1.7 KiB
XML
|
<?xml version="1.0" encoding="utf-8"?>
|
||
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
|
android:layout_width="fill_parent"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:orientation="vertical"
|
||
|
android:paddingTop="6dp"
|
||
|
android:paddingBottom="6dp"
|
||
|
android:paddingRight="6dp"
|
||
|
android:paddingLeft="24dp">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:id="@+id/linearLayout1"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:layout_alignParentBottom="true"
|
||
|
android:layout_toRightOf="@+id/message_photo"
|
||
|
android:background="@drawable/message_border"
|
||
|
android:minHeight="dp"
|
||
|
android:visibility="gone">
|
||
|
|
||
|
<LinearLayout
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="fill_parent"
|
||
|
android:background="#ededed"
|
||
|
android:orientation="vertical">
|
||
|
|
||
|
<TextView
|
||
|
android:layout_gravity="center_vertical"
|
||
|
android:id="@+id/message_body"
|
||
|
android:layout_width="wrap_content"
|
||
|
android:layout_height="wrap_content"
|
||
|
android:textColor="#333333"
|
||
|
android:textSize="14sp"
|
||
|
android:text="your contact has read up to this point"/>
|
||
|
</LinearLayout>
|
||
|
</LinearLayout>
|
||
|
|
||
|
<ImageView
|
||
|
android:id="@+id/message_photo"
|
||
|
android:layout_width="32dp"
|
||
|
android:layout_height="32dp"
|
||
|
android:layout_alignParentLeft="true"
|
||
|
android:layout_alignParentTop="true"
|
||
|
android:layout_marginRight="-1.5dp"
|
||
|
android:padding="0dp"
|
||
|
android:scaleType="fitXY"
|
||
|
android:src="@drawable/ic_profile" />
|
||
|
|
||
|
</RelativeLayout>
|