aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsteckbrief <steckbrief@chefmail.de>2015-10-16 16:03:18 +0200
committersteckbrief <steckbrief@chefmail.de>2015-10-16 16:03:18 +0200
commit7435852acb53bd28e43fcd9c8994851327dabcb7 (patch)
tree08a6202891ced0a9de51b4b81165f38a657f470f
parent464e084d2884cbfd7b0cae20a5801c0e5d32cae1 (diff)
Fixes FS#82: Background color of conversation list item set to primary background color
-rw-r--r--src/main/res/layout/conversation_list_row.xml3
-rw-r--r--src/main/res/values/colors.xml2
2 files changed, 4 insertions, 1 deletions
diff --git a/src/main/res/layout/conversation_list_row.xml b/src/main/res/layout/conversation_list_row.xml
index efa10748..e240fa85 100644
--- a/src/main/res/layout/conversation_list_row.xml
+++ b/src/main/res/layout/conversation_list_row.xml
@@ -6,7 +6,8 @@
android:orientation="horizontal"
android:padding="8dp"
android:descendantFocusability="blocksDescendants"
- android:id="@+id/conversationListRowFrame">
+ android:id="@+id/conversationListRowFrame"
+ android:background="@color/primaryBackground">
<View
android:layout_width="fill_parent"
diff --git a/src/main/res/values/colors.xml b/src/main/res/values/colors.xml
index 3a778a21..2c3b9f78 100644
--- a/src/main/res/values/colors.xml
+++ b/src/main/res/values/colors.xml
@@ -1,5 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<resources>
+ <color name="primaryBackground">@color/grey50</color>
+ <color name="secondaryBackground">@color/grey200</color>
<color name="green500">#ff259b24</color>
<color name="green700">#ff0a7e07</color>
<color name="accent">#ff0091ea</color>