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