make sure the contact list items have proper height even without thumbnail

This commit is contained in:
tibbi
2018-01-29 17:42:24 +01:00
parent 7bf74e9e70
commit c72a3cd604
4 changed files with 8 additions and 4 deletions

View File

@ -13,7 +13,7 @@
<RelativeLayout
android:id="@+id/contact_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_height="@dimen/contact_item_height"
android:paddingRight="@dimen/activity_margin">
<ImageView
@ -40,6 +40,7 @@
android:id="@+id/contact_number"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/contact_name"
android:layout_below="@+id/contact_name"
android:layout_toRightOf="@+id/contact_tmb"
android:maxLines="1"

View File

@ -26,9 +26,7 @@
<TextView
android:id="@+id/contact_name"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignBottom="@+id/contact_tmb"
android:layout_alignTop="@+id/contact_tmb"
android:layout_height="@dimen/contact_item_height"
android:layout_toRightOf="@+id/contact_tmb"
android:ellipsize="end"
android:gravity="center_vertical"