2014-01-23 20:04:05 -05:00
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
2014-01-24 17:58:51 -05:00
|
|
|
android:padding="8dp">
|
2014-01-23 20:04:05 -05:00
|
|
|
|
|
|
|
|
2014-01-24 17:58:51 -05:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/conversation_image"
|
|
|
|
android:layout_width="56dp"
|
|
|
|
android:layout_height="56dp"
|
2014-08-09 08:25:55 -04:00
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:scaleType="centerCrop"/>
|
2014-01-24 17:58:51 -05:00
|
|
|
|
|
|
|
<RelativeLayout
|
|
|
|
android:layout_toRightOf="@+id/conversation_image"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:paddingLeft="8dp">
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/conversation_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-04-25 10:24:56 -04:00
|
|
|
android:layout_alignLeft="@+id/conversation_lastwrapper"
|
2014-03-13 17:14:05 -04:00
|
|
|
android:layout_toLeftOf="@+id/conversation_lastupdate"
|
|
|
|
android:singleLine="true"
|
2014-07-04 10:13:52 -04:00
|
|
|
android:textSize="18sp"
|
2014-07-08 05:41:19 -04:00
|
|
|
android:textColor="@color/primarytext"
|
2014-01-24 17:58:51 -05:00
|
|
|
android:typeface="sans" />
|
|
|
|
|
2014-04-25 10:24:56 -04:00
|
|
|
<LinearLayout
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:id="@+id/conversation_lastwrapper"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/conversation_name"
|
|
|
|
android:paddingTop="3dp"
|
|
|
|
>
|
2014-01-24 17:58:51 -05:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/conversation_lastmsg"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textSize="14sp"
|
2014-07-08 05:41:19 -04:00
|
|
|
android:textColor="@color/primarytext"
|
2014-01-27 14:40:42 -05:00
|
|
|
android:singleLine="true"
|
|
|
|
android:scrollHorizontally="false"
|
2014-04-25 10:24:56 -04:00
|
|
|
/>
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/conversation_lastimage"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="36dp"
|
2014-07-08 05:41:19 -04:00
|
|
|
android:background="@color/primarytext"
|
2014-04-25 10:24:56 -04:00
|
|
|
android:scaleType="centerCrop" />
|
2014-01-24 17:58:51 -05:00
|
|
|
|
2014-04-25 10:24:56 -04:00
|
|
|
</LinearLayout>
|
2014-01-24 17:58:51 -05:00
|
|
|
<TextView
|
2014-01-25 21:27:55 -05:00
|
|
|
android:id="@+id/conversation_lastupdate"
|
2014-01-24 17:58:51 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignBaseline="@+id/conversation_name"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:gravity="right"
|
2014-07-08 05:41:19 -04:00
|
|
|
android:textSize="12sp"
|
|
|
|
android:textColor="@color/secondarytext"/>
|
2014-01-24 17:58:51 -05:00
|
|
|
|
|
|
|
</RelativeLayout>
|
2014-01-23 20:04:05 -05:00
|
|
|
|
|
|
|
|
|
|
|
</RelativeLayout>
|