2014-01-26 03:27:55 +01: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"
|
2014-08-28 11:01:24 +02:00
|
|
|
android:paddingBottom="4dp"
|
2014-07-04 16:13:52 +02:00
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingRight="8dp"
|
2014-08-28 11:01:24 +02:00
|
|
|
android:paddingTop="4dp" >
|
2014-01-26 03:27:55 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
2014-06-09 21:25:01 +02:00
|
|
|
android:id="@+id/message_box"
|
2014-01-26 03:27:55 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-03-15 00:19:42 +01:00
|
|
|
android:layout_alignParentBottom="true"
|
2014-01-26 03:27:55 +01:00
|
|
|
android:layout_toLeftOf="@+id/message_photo"
|
2014-03-15 00:19:42 +01:00
|
|
|
android:background="@drawable/message_border"
|
|
|
|
android:minHeight="48dp" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
2014-07-08 11:41:19 +02:00
|
|
|
android:background="@color/primarybackground"
|
2014-07-02 17:30:53 +02:00
|
|
|
android:gravity="center_vertical"
|
2014-08-28 11:01:24 +02:00
|
|
|
android:orientation="vertical"
|
2014-07-04 16:13:52 +02:00
|
|
|
android:paddingBottom="4dp"
|
2014-08-28 11:01:24 +02:00
|
|
|
android:paddingLeft="5dp"
|
2014-07-04 16:13:52 +02:00
|
|
|
android:paddingRight="5dp"
|
2014-08-28 11:01:24 +02:00
|
|
|
android:paddingTop="4dp" >
|
|
|
|
|
|
|
|
<ImageView
|
2014-04-06 15:34:08 +02:00
|
|
|
android:id="@+id/message_image"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:adjustViewBounds="true"
|
2014-07-08 11:41:19 +02:00
|
|
|
android:background="@color/primarytext"
|
2014-08-28 11:01:24 +02:00
|
|
|
android:paddingBottom="2dp"
|
|
|
|
android:scaleType="centerCrop" />
|
2014-03-15 00:19:42 +01:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/message_body"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-03-31 19:27:42 +02:00
|
|
|
android:autoLink="web"
|
2014-08-28 11:01:24 +02:00
|
|
|
android:textColor="@color/primarytext"
|
2014-03-31 19:27:42 +02:00
|
|
|
android:textIsSelectable="true"
|
2014-09-08 23:58:37 +02:00
|
|
|
android:textSize="?attr/TextSizeBody" />
|
2014-03-15 00:19:42 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-07-04 16:13:52 +02:00
|
|
|
android:layout_gravity="right"
|
2014-08-28 11:01:24 +02:00
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingTop="1dp" >
|
2014-03-15 00:19:42 +01: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"
|
2014-08-28 11:01:24 +02:00
|
|
|
android:textColor="@color/secondarytext"
|
2014-09-08 23:58:37 +02:00
|
|
|
android:textSize="?attr/TextSizeInfo" />
|
2014-08-28 11:01:24 +02:00
|
|
|
|
2014-09-28 16:33:25 +02:00
|
|
|
<ImageView
|
2014-09-20 22:44:50 +02:00
|
|
|
android:id="@+id/security_indicator"
|
2014-09-20 15:49:25 +02:00
|
|
|
android:layout_width="?attr/TextSizeInfo"
|
|
|
|
android:layout_height="?attr/TextSizeInfo"
|
|
|
|
android:layout_gravity="center_vertical"
|
2014-09-20 22:44:50 +02:00
|
|
|
android:layout_marginLeft="4sp"
|
2014-09-28 16:33:25 +02:00
|
|
|
android:alpha="0.54"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:src="@drawable/ic_secure_indicator" />
|
|
|
|
|
2014-08-28 11:01:24 +02:00
|
|
|
<ImageView
|
2014-09-20 22:44:50 +02:00
|
|
|
android:id="@+id/indicator_received"
|
2014-09-08 23:58:37 +02:00
|
|
|
android:layout_width="?attr/TextSizeInfo"
|
|
|
|
android:layout_height="?attr/TextSizeInfo"
|
2014-03-15 00:19:42 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
2014-09-20 22:44:50 +02:00
|
|
|
android:layout_marginLeft="4sp"
|
2014-09-28 16:33:25 +02:00
|
|
|
android:alpha="0.54"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:src="@drawable/ic_received_indicator" />
|
2014-03-15 00:19:42 +01:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
2014-01-26 03:27:55 +01:00
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/message_photo"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_marginLeft="-1.5dp"
|
|
|
|
android:padding="0dp"
|
2014-03-15 00:19:42 +01:00
|
|
|
android:scaleType="fitXY"
|
|
|
|
android:src="@drawable/ic_profile" />
|
|
|
|
|
2014-09-28 16:33:25 +02:00
|
|
|
</RelativeLayout>
|