#15699: Fix call element layout
diff --git a/res/layout/call_element.xml b/res/layout/call_element.xml
index aae8e70..31ce329 100644
--- a/res/layout/call_element.xml
+++ b/res/layout/call_element.xml
@@ -29,7 +29,7 @@
 shall include the source code for the parts of OpenSSL used as well 
 as that of the covered work.
  -->
- 
+<!-- 
 <com.savoirfairelinux.sflphone.client.CallElementView xmlns:android="http://schemas.android.com/apk/res/android"
 	android:id="@+id/panel"
 	android:layout_width="match_parent"
@@ -117,4 +117,38 @@
 			android:gravity="center"/>
 	</RelativeLayout>
 
-</com.savoirfairelinux.sflphone.client.CallElementView>
\ No newline at end of file
+</com.savoirfairelinux.sflphone.client.CallElementView>
+-->
+<com.savoirfairelinux.sflphone.client.CallElementView xmlns:android="http://schemas.android.com/apk/res/android"
+    android:id="@+id/panel"
+    android:layout_width="match_parent"
+    android:layout_height="match_parent"
+    android:minHeight="70dp" >
+
+    <RelativeLayout
+        android:id="@+id/contactview"
+        android:layout_width="match_parent"
+        android:layout_height="match_parent"
+        android:background="@drawable/box_border">
+        <TextView
+            android:id="@+id/display_name"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:layout_alignParentTop="true"
+            android:layout_toRightOf="@+id/photo"
+            android:paddingLeft="@dimen/padding_small"
+            android:paddingTop="@dimen/padding_small"
+            android:text="Contact Name"
+            android:textAppearance="?android:attr/textAppearanceMedium" />
+        <TextView
+            android:id="@+id/phones"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:layout_below="@+id/display_name"
+            android:layout_toRightOf="@+id/photo"
+            android:paddingBottom="@dimen/padding_small"
+            android:paddingLeft="@dimen/padding_small"
+            android:text="Small Text"
+            android:textAppearance="?android:attr/textAppearanceSmall" />
+    </RelativeLayout>
+</com.savoirfairelinux.sflphone.client.CallElementView>