2014-01-27 20:40:42 +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-03-15 00:42:01 +01:00
|
|
|
android:padding="8dp" >
|
2014-01-27 20:40:42 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
2014-03-15 00:42:01 +01:00
|
|
|
android:id="@+id/linearLayout1"
|
2014-01-27 20:40:42 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2014-03-15 00:42:01 +01:00
|
|
|
android:layout_alignParentBottom="true"
|
2014-01-27 20:40:42 +01:00
|
|
|
android:layout_toRightOf="@+id/message_photo"
|
2014-03-15 00:42:01 +01:00
|
|
|
android:background="@drawable/message_border"
|
|
|
|
android:minHeight="48dp" >
|
2014-01-27 20:40:42 +01:00
|
|
|
|
2014-03-15 00:42:01 +01:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
|
|
|
android:background="#ededed"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="5dp" >
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/message_body"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:autoLink="web"
|
2014-03-31 19:27:42 +02:00
|
|
|
android:textIsSelectable="true"
|
2014-03-15 00:42:01 +01:00
|
|
|
android:textColor="#333333"
|
|
|
|
android:textSize="16sp" />
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/security_indicator"
|
|
|
|
android:layout_width="12sp"
|
|
|
|
android:layout_height="12sp"
|
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:layout_marginTop="2sp"
|
|
|
|
android:src="@drawable/ic_indicator"
|
|
|
|
android:layout_marginRight="6sp"/>
|
2014-01-27 20:40:42 +01:00
|
|
|
|
2014-03-15 00:19:42 +01:00
|
|
|
|
2014-03-15 00:42:01 +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:paddingTop="1dp"
|
|
|
|
android:text="@string/sending"
|
|
|
|
android:textColor="#8e8e8e"
|
|
|
|
android:textSize="12sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
|
2014-01-27 20:40:42 +01:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/message_photo"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
2014-03-15 00:42:01 +01:00
|
|
|
android:layout_alignParentTop="true"
|
2014-01-27 20:40:42 +01:00
|
|
|
android:layout_marginRight="-1.5dp"
|
|
|
|
android:padding="0dp"
|
2014-03-15 00:42:01 +01:00
|
|
|
android:scaleType="fitXY"
|
|
|
|
android:src="@drawable/ic_profile" />
|
|
|
|
|
|
|
|
</RelativeLayout>
|