109 lines
4.5 KiB
XML
109 lines
4.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
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">
|
|
|
|
<com.makeramen.roundedimageview.RoundedImageView
|
|
android:id="@+id/message_photo"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:scaleType="fitXY"
|
|
android:paddingBottom="3dp"
|
|
android:src="@drawable/ic_profile"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_alignParentRight="true"
|
|
android:layout_alignParentEnd="true"
|
|
app:riv_corner_radius="2dp" />
|
|
|
|
<LinearLayout
|
|
android:id="@+id/message_box"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_alignParentBottom="true"
|
|
android:layout_toLeftOf="@+id/message_photo"
|
|
android:background="@drawable/message_bubble_sent"
|
|
android:minHeight="53dp"
|
|
android:layout_marginLeft="-4dp"
|
|
android:longClickable="true">
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="fill_parent"
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical"
|
|
android:padding="2dp">
|
|
|
|
<ImageView
|
|
android:id="@+id/message_image"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="8dp"
|
|
android:layout_marginBottom="4dp"
|
|
android:adjustViewBounds="true"
|
|
android:background="@color/black87"
|
|
android:scaleType="centerCrop" />
|
|
|
|
<TextView
|
|
android:id="@+id/message_body"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:autoLink="web"
|
|
android:textColorLink="@color/black87"
|
|
android:textColor="@color/black87"
|
|
android:textColorHighlight="@color/grey500"
|
|
android:textSize="?attr/TextSizeBody" />
|
|
|
|
<Button
|
|
android:id="@+id/download_button"
|
|
style="?android:attr/buttonStyleSmall"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:visibility="gone" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="right"
|
|
android:orientation="horizontal"
|
|
android:paddingBottom="2dp">
|
|
|
|
<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"
|
|
android:textColor="@color/black54"
|
|
android:textSize="?attr/TextSizeInfo" />
|
|
|
|
<ImageView
|
|
android:id="@+id/security_indicator"
|
|
android:layout_width="?attr/TextSizeInfo"
|
|
android:layout_height="?attr/TextSizeInfo"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="4sp"
|
|
android:alpha="0.54"
|
|
android:gravity="center_vertical"
|
|
android:src="@drawable/ic_secure_indicator" />
|
|
|
|
<ImageView
|
|
android:id="@+id/indicator_received"
|
|
android:layout_width="?attr/TextSizeInfo"
|
|
android:layout_height="?attr/TextSizeInfo"
|
|
android:layout_gravity="center_vertical"
|
|
android:layout_marginLeft="4sp"
|
|
android:alpha="0.54"
|
|
android:gravity="center_vertical"
|
|
android:src="@drawable/ic_received_indicator" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
</RelativeLayout> |