commit 2d30558e9e1b7ea77da84dcc4135bd808672b6e4
Author: Leszek Koltunski <leszek@koltunski.pl>
Date:   Mon Jul 6 19:34:28 2020 +0100

    Reinvent the Pattern Dialog (Part 4)

diff --git a/src/main/res/layout/dialog_pattern_child_item.xml b/src/main/res/layout/dialog_pattern_child_item.xml
index fbf4f2f4..3c058a86 100644
--- a/src/main/res/layout/dialog_pattern_child_item.xml
+++ b/src/main/res/layout/dialog_pattern_child_item.xml
@@ -2,16 +2,18 @@
 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="fill_parent"
     android:layout_height="match_parent"
-    android:orientation="vertical" >
+    android:orientation="horizontal" >
 
     <TextView
         android:id="@+id/child"
-        android:layout_width="wrap_content"
+        android:background="@color/dark_grey"
+        android:layout_width="match_parent"
         android:layout_height="wrap_content"
         android:layout_marginTop="5sp"
         android:layout_marginBottom="5sp"
-        android:paddingLeft="35sp"
-        android:paddingRight="10sp"
+        android:layout_marginLeft="10sp"
+        android:layout_marginRight="10sp"
+        android:paddingLeft="25sp"
         />
 
 </LinearLayout>
\ No newline at end of file
diff --git a/src/main/res/values/colors.xml b/src/main/res/values/colors.xml
index cc09eb9b..c7874d81 100644
--- a/src/main/res/values/colors.xml
+++ b/src/main/res/values/colors.xml
@@ -4,6 +4,7 @@
     <color name="colorPrimaryDark">#00574B</color>
     <color name="colorAccent">#D81B60</color>
     <color name="red">#ffff0000</color>
+    <color name="dark_grey">#ff222222</color>
     <color name="grey">#ff333333</color>
     <color name="light_grey">#ff555555</color>
     <color name="black">#ff010101</color>
