Adding some space between items

Adding padding between the show notification label and the toggle

Flag: NONE
Fix: 292447609
Test: manual
Change-Id: I759531ace6a742dbcfc506fd9a078cfe5e547f58
diff --git a/res/layout/notification_section.xml b/res/layout/notification_section.xml
index 3e29a4e..22c676e 100644
--- a/res/layout/notification_section.xml
+++ b/res/layout/notification_section.xml
@@ -33,6 +33,7 @@
         android:layout_weight="1"
         android:layout_gravity="center"
         android:text="@string/show_notifications_on_lock_screen"
+        android:paddingEnd="@dimen/notification_section_title_padding"
         style="@style/SectionTitleTextStyle"/>
 
     <Switch
diff --git a/res/values/dimens.xml b/res/values/dimens.xml
index aa6c477..2f9daae 100644
--- a/res/values/dimens.xml
+++ b/res/values/dimens.xml
@@ -171,4 +171,8 @@
     <dimen name="clock_color_size_button_corner_radius">16dp</dimen>
     <dimen name="clock_color_size_button_icon_size">20dp</dimen>
     <dimen name="clock_color_size_button_icon_margin_end">12dp</dimen>
+
+    <!-- Notification item dimensions -->
+    <dimen name="notification_section_title_padding">8dp</dimen>
+
 </resources>