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 18:15:09 +00:00
|
|
|
android:background="@color/primary500"/>
|
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_alignParentLeft="true"
|
|
|
|
android:layout_centerVertical="true"
|
|
|
|
android:layout_toLeftOf="@+id/notification_status"
|
|
|
|
android:orientation="vertical">
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/conversation_lastmsg"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
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
|
|
|
|
android:id="@+id/notification_status"
|
|
|
|
android:layout_width="16sp"
|
|
|
|
android:layout_height="16sp"
|
|
|
|
android:layout_alignParentRight="true"
|
|
|
|
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
|
|
|
/>
|
|
|
|
</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>
|