Fix vertical padding on call log fragment.

Spacing still needs to be tweaked for the margins, but that will be
done with other redline tweak things.

Bug: 20664464
Change-Id: I874418a6a9661c34afbcd772744fa8d31ac7baa3
diff --git a/res/layout/call_log_fragment.xml b/res/layout/call_log_fragment.xml
index cee6af1..a5a3072 100644
--- a/res/layout/call_log_fragment.xml
+++ b/res/layout/call_log_fragment.xml
@@ -41,14 +41,15 @@
             android:layout_width="match_parent"
             android:layout_height="match_parent"
             android:background="@color/background_dialer_call_log"
-            android:padding="8dp" />
+            android:paddingStart="@dimen/call_log_horizontal_margin"
+            android:paddingEnd="@dimen/call_log_horizontal_margin" />
 
         <include
             android:id="@+id/empty_list_view"
             android:layout_width="match_parent"
             android:layout_height="match_parent"
             layout="@layout/empty_list_view"
-            android:visibility="gone"/>
+            android:visibility="gone" />
 
     </FrameLayout>
 
diff --git a/res/values/dimens.xml b/res/values/dimens.xml
index b9b3aa5..d4a36cf 100644
--- a/res/values/dimens.xml
+++ b/res/values/dimens.xml
@@ -22,6 +22,7 @@
     <dimen name="remove_text_size">16dp</dimen>
 
     <!-- Call Log -->
+    <dimen name="call_log_horizontal_margin">8dp</dimen>
     <dimen name="call_log_call_action_size">32dp</dimen>
     <dimen name="call_log_call_action_width">54dp</dimen>
     <dimen name="call_log_icon_margin">4dp</dimen>