* #26145 Thread was locking UI
* #26115 Unattended transfer working
diff --git a/res/layout/item_calllist.xml b/res/layout/item_calllist.xml
index bb142c3..8be2be9 100644
--- a/res/layout/item_calllist.xml
+++ b/res/layout/item_calllist.xml
@@ -4,57 +4,42 @@
     android:layout_height="match_parent"
     android:background="@drawable/item_call_selector" >
 
-    <TextView
-        android:id="@+id/call_title"
+    <RelativeLayout
+        android:id="@+id/call_entry"
         android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
+        android:layout_height="match_parent"
         android:layout_alignParentLeft="true"
-        android:layout_alignParentTop="true"
-        android:text="Large Text"
-        android:textAppearance="?android:attr/textAppearanceLarge" />
+        android:clickable="true"
+        android:layout_toLeftOf="@+id/expand_button" >
 
-    <!-- <Button -->
-    <!-- android:id="@+id/hangup_button" -->
-    <!-- android:layout_width="wrap_content" -->
-    <!-- android:layout_height="wrap_content" -->
-    <!-- android:layout_alignBaseline="@+id/call_title" -->
-    <!-- android:layout_alignBottom="@+id/call_title" -->
-    <!-- android:layout_marginLeft="34dp" -->
-    <!-- android:layout_toRightOf="@+id/call_title" -->
-    <!-- android:focusable="false" -->
-    <!-- android:focusableInTouchMode="false" -->
-    <!-- android:text="HangUp" /> -->
+        <TextView
+            android:id="@+id/call_title"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:layout_alignParentLeft="true"
+            android:layout_alignParentTop="true"
+            android:text="Large Text"
+            android:textAppearance="?android:attr/textAppearanceLarge" />
 
-    <TextView
-        android:id="@+id/call_status"
-        android:layout_width="wrap_content"
-        android:layout_height="wrap_content"
-        android:layout_alignParentLeft="true"
-        android:layout_below="@+id/call_title"
-        android:text="Medium Text"
-        android:textAppearance="?android:attr/textAppearanceMedium" />
+        <TextView
+            android:id="@+id/call_status"
+            android:layout_width="wrap_content"
+            android:layout_height="wrap_content"
+            android:layout_alignParentLeft="true"
+            android:layout_below="@+id/call_title"
+            android:text="Medium Text"
+            android:textAppearance="?android:attr/textAppearanceMedium" />
+    </RelativeLayout>
 
-    <!-- <ToggleButton -->
-    <!-- android:id="@+id/hold_switch" -->
-    <!-- android:layout_width="wrap_content" -->
-    <!-- android:layout_height="wrap_content" -->
-    <!-- android:layout_alignBaseline="@+id/hangup_button" -->
-    <!-- android:layout_alignBottom="@+id/hangup_button" -->
-    <!-- android:layout_alignParentRight="true" -->
-    <!-- android:focusable="false" -->
-    <!-- android:focusableInTouchMode="false" -->
-    <!-- android:textOff="Hold" -->
-    <!-- android:textOn="Unhold" /> -->
-    
     <ImageButton
         android:id="@+id/expand_button"
         android:layout_width="wrap_content"
         android:layout_height="wrap_content"
         android:layout_alignParentRight="true"
         android:layout_centerVertical="true"
-        android:focusable="false"
-        android:src="@drawable/up_arrow"
         android:background="@null"
-        android:focusableInTouchMode="false" />
+        android:focusable="false"
+        android:focusableInTouchMode="false"
+        android:src="@drawable/up_arrow" />
 
 </RelativeLayout>
\ No newline at end of file