Remove bottom padding on image.

This was used to center the image more properly in the default case,
but then it was also applying to contact photos. Better solution to
center is to have the asset changed to be moved by the FAB height

Change-Id: Idda6a780505b37d99f1394f181ee298cd5b22d57
diff --git a/InCallUI/res/layout-land/call_card_fragment.xml b/InCallUI/res/layout-land/call_card_fragment.xml
index 6635293..b0a534e 100644
--- a/InCallUI/res/layout-land/call_card_fragment.xml
+++ b/InCallUI/res/layout-land/call_card_fragment.xml
@@ -69,8 +69,7 @@
                 android:scaleType="centerCrop"
                 android:contentDescription="@string/contactPhoto"
                 android:background="@color/incall_photo_background_color"
-                android:src="@drawable/img_no_image_automirrored"
-                android:paddingBottom="@dimen/end_call_floating_action_button_diameter" />
+                android:src="@drawable/img_no_image_automirrored" />
 
         </FrameLayout>
 
diff --git a/InCallUI/res/layout/call_card_fragment.xml b/InCallUI/res/layout/call_card_fragment.xml
index c2112b6..6d915d9 100644
--- a/InCallUI/res/layout/call_card_fragment.xml
+++ b/InCallUI/res/layout/call_card_fragment.xml
@@ -71,8 +71,7 @@
                 android:scaleType="centerCrop"
                 android:importantForAccessibility="no"
                 android:background="@color/incall_photo_background_color"
-                android:src="@drawable/img_no_image_automirrored"
-                android:paddingBottom="@dimen/end_call_floating_action_button_diameter" />
+                android:src="@drawable/img_no_image_automirrored" />
 
         </FrameLayout>