2014-01-25 21:27:55 -05:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2015-07-20 20:21:34 -04:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingBottom="3dp"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:paddingTop="3dp">
|
2015-07-19 08:26:03 -04:00
|
|
|
|
2015-07-20 20:21:34 -04:00
|
|
|
<com.makeramen.roundedimageview.RoundedImageView
|
2015-07-19 08:26:03 -04:00
|
|
|
android:id="@+id/message_photo"
|
2015-07-19 16:34:47 -04:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:scaleType="fitXY"
|
|
|
|
android:paddingBottom="3dp"
|
|
|
|
android:src="@drawable/ic_profile"
|
2015-07-19 08:26:03 -04:00
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentRight="true"
|
2015-07-20 20:21:34 -04:00
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
app:riv_corner_radius="2dp" />
|
2014-01-25 21:27:55 -05:00
|
|
|
|
|
|
|
<LinearLayout
|
2014-06-09 15:25:01 -04:00
|
|
|
android:id="@+id/message_box"
|
2014-01-25 21:27:55 -05:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-03-14 19:19:42 -04:00
|
|
|
android:layout_alignParentBottom="true"
|
2014-01-25 21:27:55 -05:00
|
|
|
android:layout_toLeftOf="@+id/message_photo"
|
2015-07-19 08:26:03 -04:00
|
|
|
android:background="@drawable/message_bubble_sent"
|
2015-07-19 16:34:47 -04:00
|
|
|
android:minHeight="53dp"
|
|
|
|
android:layout_marginLeft="-4dp"
|
2014-10-23 15:27:41 -04:00
|
|
|
android:longClickable="true">
|
2014-03-14 19:19:42 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
2014-07-02 11:30:53 -04:00
|
|
|
android:gravity="center_vertical"
|
2015-07-19 16:34:47 -04:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="2dp">
|
2014-08-28 05:01:24 -04:00
|
|
|
|
|
|
|
<ImageView
|
2014-04-06 09:34:08 -04:00
|
|
|
android:id="@+id/message_image"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2015-07-19 08:26:03 -04:00
|
|
|
android:layout_marginTop="8dp"
|
|
|
|
android:layout_marginBottom="4dp"
|
2014-04-06 09:34:08 -04:00
|
|
|
android:adjustViewBounds="true"
|
2015-07-13 06:55:13 -04:00
|
|
|
android:background="@color/black87"
|
2014-08-28 05:01:24 -04:00
|
|
|
android:scaleType="centerCrop" />
|
2014-03-14 19:19:42 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/message_body"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-03-31 13:27:42 -04:00
|
|
|
android:autoLink="web"
|
2015-07-19 08:26:03 -04:00
|
|
|
android:textColorLink="@color/black87"
|
2015-07-13 06:55:13 -04:00
|
|
|
android:textColor="@color/black87"
|
2014-09-08 17:58:37 -04:00
|
|
|
android:textSize="?attr/TextSizeBody" />
|
2015-07-19 08:26:03 -04:00
|
|
|
|
|
|
|
<Button
|
2014-10-15 13:32:12 -04:00
|
|
|
android:id="@+id/download_button"
|
|
|
|
style="?android:attr/buttonStyleSmall"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone" />
|
2014-03-14 19:19:42 -04:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-07-04 10:13:52 -04:00
|
|
|
android:layout_gravity="right"
|
2014-08-28 05:01:24 -04:00
|
|
|
android:orientation="horizontal"
|
2015-07-19 08:26:03 -04:00
|
|
|
android:paddingBottom="2dp">
|
2014-03-14 19:19:42 -04:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/message_time"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/sending"
|
2015-07-13 06:55:13 -04:00
|
|
|
android:textColor="@color/black54"
|
2014-09-08 17:58:37 -04:00
|
|
|
android:textSize="?attr/TextSizeInfo" />
|
2014-08-28 05:01:24 -04:00
|
|
|
|
2014-09-28 10:33:25 -04:00
|
|
|
<ImageView
|
2014-09-20 16:44:50 -04:00
|
|
|
android:id="@+id/security_indicator"
|
2014-09-20 09:49:25 -04:00
|
|
|
android:layout_width="?attr/TextSizeInfo"
|
|
|
|
android:layout_height="?attr/TextSizeInfo"
|
|
|
|
android:layout_gravity="center_vertical"
|
2014-09-20 16:44:50 -04:00
|
|
|
android:layout_marginLeft="4sp"
|
2014-09-28 10:33:25 -04:00
|
|
|
android:alpha="0.54"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:src="@drawable/ic_secure_indicator" />
|
|
|
|
|
2014-08-28 05:01:24 -04:00
|
|
|
<ImageView
|
2014-09-20 16:44:50 -04:00
|
|
|
android:id="@+id/indicator_received"
|
2014-09-08 17:58:37 -04:00
|
|
|
android:layout_width="?attr/TextSizeInfo"
|
|
|
|
android:layout_height="?attr/TextSizeInfo"
|
2014-03-14 19:19:42 -04:00
|
|
|
android:layout_gravity="center_vertical"
|
2014-09-20 16:44:50 -04:00
|
|
|
android:layout_marginLeft="4sp"
|
2014-09-28 10:33:25 -04:00
|
|
|
android:alpha="0.54"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:src="@drawable/ic_received_indicator" />
|
2014-03-14 19:19:42 -04:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
2014-01-25 21:27:55 -05:00
|
|
|
|
2014-09-28 10:33:25 -04:00
|
|
|
</RelativeLayout>
|