Moving icons to the right hand side in the call detail UI

Bug: 2377400
Change-Id: I28afaccfca69d4aee55dfbe58ca0662fc77e33c4
diff --git a/res/layout-finger/call_detail_list_item.xml b/res/layout-finger/call_detail_list_item.xml
index e476de1..78a5294 100644
--- a/res/layout-finger/call_detail_list_item.xml
+++ b/res/layout-finger/call_detail_list_item.xml
@@ -27,19 +27,11 @@
     android:gravity="center_vertical"
 >
 
-    <ImageView android:id="@+id/icon"
-        android:layout_width="32dip"
-        android:layout_height="32dip"
-        android:layout_marginRight="5dip"
-        android:gravity="center"
-        android:scaleType="centerInside"
-    />
-
     <LinearLayout
         android:layout_width="0dip"
         android:layout_height="wrap_content"
         android:layout_weight="1"
-        android:layout_marginLeft="5dip"
+        android:layout_marginRight="5dip"
         android:paddingTop="5dip"
         android:paddingBottom="7dip"
         android:orientation="vertical"
@@ -75,4 +67,12 @@
 
     </LinearLayout>
 
+    <ImageView android:id="@+id/icon"
+        android:layout_width="32dip"
+        android:layout_height="32dip"
+        android:layout_marginLeft="5dip"
+        android:gravity="center"
+        android:scaleType="centerInside"
+    />
+
 </LinearLayout>