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"
|
2020-01-05 13:30:26 +01:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingLeft="8dp"
|
|
|
|
android:paddingTop="3dp"
|
|
|
|
android:paddingRight="8dp"
|
|
|
|
android:paddingBottom="3dp">
|
2018-09-05 18:02:44 +02:00
|
|
|
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/message_photo_box"
|
|
|
|
android:layout_width="wrap_content"
|
2018-12-09 22:32:42 +01:00
|
|
|
android:layout_height="wrap_content"
|
2020-01-05 13:30:26 +01:00
|
|
|
android:layout_alignParentEnd="true"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:layout_alignParentBottom="true"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
2018-09-05 18:02:44 +02:00
|
|
|
<com.makeramen.roundedimageview.RoundedImageView
|
|
|
|
android:id="@+id/message_photo"
|
|
|
|
android:layout_width="48dp"
|
|
|
|
android:layout_height="48dp"
|
|
|
|
android:scaleType="fitXY"
|
|
|
|
app:riv_corner_radius="2dp" />
|
2020-01-05 13:30:26 +01:00
|
|
|
|
2018-09-05 18:02:44 +02:00
|
|
|
<View
|
|
|
|
android:id="@+id/placeholder"
|
|
|
|
android:layout_width="48dp"
|
2020-01-05 13:30:26 +01:00
|
|
|
android:layout_height="3dp" />
|
2018-09-05 18:02:44 +02:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
|
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"
|
2020-01-05 13:30:26 +01:00
|
|
|
android:layout_marginLeft="-4dp"
|
2018-09-05 18:02:44 +02:00
|
|
|
android:layout_toLeftOf="@+id/message_photo_box"
|
Dark theme, theme switch, icons, style, strings
added some white icons,
changed hardcoded icons to theme attributes,
changed icon_edit_dark to icon_edit_body to reflect icons position,
grey message bubbles in dark theme,
misc
purged ic_action_chat as it wasn't used
preference use_white_background changed to use_green_background, default true
grey chat bubbles darker, text white
replaced all grey600 with black icons and 0.54 alpha attribute
highlightColor in dark grey chat bubble now darker than background
2016-05-12 20:00:18 +02:00
|
|
|
android:background="?attr/message_bubble_sent"
|
2020-01-05 13:30:26 +01:00
|
|
|
android:longClickable="true"
|
|
|
|
android:minHeight="53dp">
|
2014-03-15 00:19:42 +01:00
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="fill_parent"
|
2014-07-02 17:30:53 +02:00
|
|
|
android:gravity="center_vertical"
|
2015-07-19 22:34:47 +02:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:padding="2dp">
|
2014-08-28 11:01:24 +02:00
|
|
|
|
2020-01-05 13:30:26 +01:00
|
|
|
<include layout="@layout/message_content" />
|
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"
|
2015-07-19 14:26:03 +02:00
|
|
|
android:paddingBottom="2dp">
|
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"
|
2020-01-05 13:30:26 +01:00
|
|
|
android:layout_marginEnd="4sp"
|
|
|
|
android:layout_marginRight="4sp"
|
2014-03-15 00:19:42 +01:00
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/sending"
|
2020-01-05 13:30:26 +01:00
|
|
|
android:textAppearance="@style/TextAppearance.Conversations.Caption" />
|
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"
|
2018-03-31 12:16:56 +02:00
|
|
|
android:layout_width="?attr/TextSizeCaption"
|
|
|
|
android:layout_height="?attr/TextSizeCaption"
|
2014-09-20 15:49:25 +02:00
|
|
|
android:layout_gravity="center_vertical"
|
2014-09-28 16:33:25 +02:00
|
|
|
android:alpha="0.54"
|
|
|
|
android:gravity="center_vertical"
|
2016-02-15 23:15:04 +01:00
|
|
|
android:src="@drawable/ic_lock_black_18dp" />
|
|
|
|
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/edit_indicator"
|
2018-03-31 12:16:56 +02:00
|
|
|
android:layout_width="?attr/TextSizeCaption"
|
|
|
|
android:layout_height="?attr/TextSizeCaption"
|
2016-02-15 23:15:04 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
android:alpha="0.54"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:src="@drawable/ic_mode_edit_black_18dp" />
|
2014-09-28 16:33:25 +02:00
|
|
|
|
2014-08-28 11:01:24 +02:00
|
|
|
<ImageView
|
2014-09-20 22:44:50 +02:00
|
|
|
android:id="@+id/indicator_received"
|
2018-03-31 12:16:56 +02:00
|
|
|
android:layout_width="?attr/TextSizeCaption"
|
|
|
|
android:layout_height="?attr/TextSizeCaption"
|
2014-03-15 00:19:42 +01:00
|
|
|
android:layout_gravity="center_vertical"
|
2014-09-28 16:33:25 +02:00
|
|
|
android:alpha="0.54"
|
|
|
|
android:gravity="center_vertical"
|
2020-01-05 13:30:26 +01:00
|
|
|
android:src="@drawable/ic_done_black_18dp" />
|
2014-03-15 00:19:42 +01:00
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|
2014-01-26 03:27:55 +01:00
|
|
|
|
2014-09-28 16:33:25 +02:00
|
|
|
</RelativeLayout>
|