2014-10-22 16:38:44 +00:00
|
|
|
<?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"
|
2015-07-19 20:34:47 +00:00
|
|
|
android:paddingBottom="5dp"
|
2014-10-22 16:38:44 +00:00
|
|
|
android:paddingLeft="8dp"
|
2015-07-19 12:26:03 +00:00
|
|
|
android:paddingRight="8dp"
|
2015-07-19 20:34:47 +00:00
|
|
|
android:paddingTop="5dp" >
|
2014-10-22 16:38:44 +00:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/message_photo"
|
2015-07-19 20:34:47 +00:00
|
|
|
android:layout_width="32dp"
|
|
|
|
android:layout_height="32dp"
|
2014-10-22 16:38:44 +00:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_marginRight="-1.5dp"
|
|
|
|
android:padding="0dp"
|
|
|
|
android:scaleType="fitXY"
|
|
|
|
android:src="@drawable/ic_profile" />
|
|
|
|
|
2015-01-18 12:44:18 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/status_message"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginLeft="8dp"
|
|
|
|
android:layout_toEndOf="@+id/message_photo"
|
|
|
|
android:layout_toRightOf="@+id/message_photo"
|
|
|
|
android:text="@string/contact_has_read_up_to_this_point"
|
2015-07-13 10:55:13 +00:00
|
|
|
android:textColor="@color/black54"
|
2015-01-18 12:44:18 +00:00
|
|
|
android:textSize="?attr/TextSizeInfo"
|
|
|
|
android:textStyle="italic"/>
|
|
|
|
|
2014-10-22 16:38:44 +00:00
|
|
|
</RelativeLayout>
|