diff options
author | Andrew Lee <anwlee@google.com> | 2015-09-04 14:19:20 -0700 |
---|---|---|
committer | Andrew Lee <anwlee@google.com> | 2015-09-04 14:19:20 -0700 |
commit | 7aa3c70e32c26933db5e7e98069ed3c8a814b979 (patch) | |
tree | 2e3c86052ab2783d6876c6d13551606b54b81923 | |
parent | d9b158b71547178343bc7b8efb887b11c0db1789 (diff) |
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
-rw-r--r-- | InCallUI/res/layout-land/call_card_fragment.xml | 3 | ||||
-rw-r--r-- | InCallUI/res/layout/call_card_fragment.xml | 3 |
2 files changed, 2 insertions, 4 deletions
diff --git a/InCallUI/res/layout-land/call_card_fragment.xml b/InCallUI/res/layout-land/call_card_fragment.xml index 663529313..b0a534ee9 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 c2112b65b..6d915d976 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> |