2015-04-02 22:06:37 +00:00
|
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2016-01-08 13:41:55 +00:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:descendantFocusability="blocksDescendants">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2016-01-08 13:41:55 +00:00
|
|
|
<View
|
|
|
|
android:layout_width="fill_parent"
|
2016-01-12 14:35:23 +00:00
|
|
|
android:layout_height="match_parent"
|
2016-06-10 21:22:16 +00:00
|
|
|
android:background="?attr/conversations_overview_background"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2016-01-08 13:41:55 +00:00
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/swipeable_item"
|
|
|
|
android:layout_width="fill_parent"
|
2016-01-12 14:35:23 +00:00
|
|
|
android:layout_height="wrap_content"
|
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/color_background_primary">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2016-01-08 13:41:55 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?android:selectableItemBackground"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="8dp">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2016-01-08 13:41:55 +00:00
|
|
|
<com.makeramen.roundedimageview.RoundedImageView
|
|
|
|
android:id="@+id/conversation_image"
|
|
|
|
android:layout_width="56dp"
|
|
|
|
android:layout_height="56dp"
|
|
|
|
android:layout_alignParentLeft="true"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
app:riv_corner_radius="2dp"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2016-01-08 13:41:55 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toRightOf="@+id/conversation_image"
|
|
|
|
android:paddingLeft="8dp">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2016-01-08 13:41:55 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/conversation_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignLeft="@+id/conversation_lastwrapper"
|
|
|
|
android:layout_toLeftOf="@+id/conversation_lastupdate"
|
|
|
|
android:paddingRight="4dp"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:text="Awesome groupchat"
|
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"
|
2016-01-08 13:41:55 +00:00
|
|
|
android:textSize="?attr/TextSizeHeadline"
|
|
|
|
android:typeface="sans"/>
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2016-01-08 13:41:55 +00:00
|
|
|
<RelativeLayout
|
|
|
|
android:id="@+id/conversation_lastwrapper"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_below="@id/conversation_name"
|
|
|
|
android:layout_marginTop="4dp">
|
2014-10-22 16:38:44 +00:00
|
|
|
|
2016-01-08 13:41:55 +00:00
|
|
|
<LinearLayout android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_centerVertical="true"
|
2017-03-02 21:24:58 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_alignParentLeft="true"
|
2016-01-08 13:41:55 +00:00
|
|
|
android:layout_toLeftOf="@+id/notification_status"
|
2017-03-02 21:24:58 +00:00
|
|
|
android:id="@+id/txt_img_wrapper">
|
2016-01-08 13:41:55 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/conversation_lastmsg"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2017-03-03 10:55:07 +00:00
|
|
|
android:minHeight="?attr/IconSize"
|
|
|
|
android:gravity="center_vertical"
|
2016-01-08 13:41:55 +00:00
|
|
|
android:scrollHorizontally="false"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:text="This is a placeholder text to show the last messages"
|
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"
|
2016-01-08 13:41:55 +00:00
|
|
|
android:textSize="?attr/TextSizeBody"/>
|
2015-04-02 22:06:37 +00:00
|
|
|
|
2016-01-08 13:41:55 +00:00
|
|
|
<com.makeramen.roundedimageview.RoundedImageView
|
|
|
|
android:id="@+id/conversation_lastimage"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="36dp"
|
|
|
|
android:background="@color/black87"
|
|
|
|
android:scaleType="centerCrop"
|
|
|
|
android:visibility="gone"
|
|
|
|
app:riv_corner_radius="2dp"/>
|
|
|
|
</LinearLayout>
|
|
|
|
<ImageView
|
2017-03-03 10:55:07 +00:00
|
|
|
android:visibility="visible"
|
2016-01-08 13:41:55 +00:00
|
|
|
android:id="@+id/notification_status"
|
2017-03-03 10:55:07 +00:00
|
|
|
android:layout_width="?attr/IconSize"
|
|
|
|
android:layout_height="?attr/IconSize"
|
2017-03-02 21:24:58 +00:00
|
|
|
android:layout_toLeftOf="@+id/unread_count"
|
|
|
|
android:layout_alignWithParentIfMissing="true"
|
2016-01-08 13:41:55 +00:00
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginLeft="4dp"
|
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:src="?attr/icon_notifications"
|
2016-01-08 13:41:55 +00:00
|
|
|
/>
|
2017-03-02 21:24:58 +00:00
|
|
|
<eu.siacs.conversations.ui.widget.UnreadCountCustomView
|
|
|
|
android:id="@+id/unread_count"
|
|
|
|
android:layout_width="?attr/IconSize"
|
|
|
|
android:layout_height="?attr/IconSize"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_marginLeft="3dp"
|
|
|
|
android:layout_marginTop="2dp"
|
|
|
|
android:layout_marginBottom="1dp"
|
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
app:backgroundColor="?attr/unread_count" />
|
|
|
|
|
2016-01-08 13:41:55 +00:00
|
|
|
</RelativeLayout>
|
2015-04-02 22:06:37 +00:00
|
|
|
|
2016-01-08 13:41:55 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/conversation_lastupdate"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_alignBaseline="@+id/conversation_name"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
android:gravity="right"
|
|
|
|
android:text="23:42"
|
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"
|
2016-01-08 13:41:55 +00:00
|
|
|
android:textSize="?attr/TextSizeInfo"/>
|
|
|
|
</RelativeLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
</FrameLayout>
|
2015-04-02 22:06:37 +00:00
|
|
|
</FrameLayout>
|