Adjust the padding of list item in the contact list

The tops of letters of contacts name gets cut off
when font size is set to "Largest".
To fix this, added some padding to height of list item.

Bug: 38398812
Change-Id: I2349294f02cc796800907554369be9e20df202b5
diff --git a/src/com/android/contacts/list/ContactListItemView.java b/src/com/android/contacts/list/ContactListItemView.java
index 4f42a0f..385aa7c 100644
--- a/src/com/android/contacts/list/ContactListItemView.java
+++ b/src/com/android/contacts/list/ContactListItemView.java
@@ -588,7 +588,8 @@
         // Calculate height including padding.
         int height = (mNameTextViewHeight + mPhoneticNameTextViewHeight +
                 mLabelAndDataViewMaxHeight +
-                mSnippetTextViewHeight + mStatusTextViewHeight);
+                mSnippetTextViewHeight + mStatusTextViewHeight
+                + getPaddingBottom() + getPaddingTop());
 
         // Make sure the height is at least as high as the photo
         height = Math.max(height, mPhotoViewHeight + getPaddingBottom() + getPaddingTop());