Phone: Delay-create search fragment

In order to take full advantage of the new "fragment deferred start" feature.
Now we create the search fragment in the first onLayout call, which is after
all other fragments are created.

Bug 5550646

Change-Id: I2e3710fb4ea6ff4301309538dd58bdef5811bc8b
diff --git a/res/layout/dialtacts_activity.xml b/res/layout/dialtacts_activity.xml
index af85bba..d1af632 100644
--- a/res/layout/dialtacts_activity.xml
+++ b/res/layout/dialtacts_activity.xml
@@ -17,18 +17,11 @@
 <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
-    android:layout_marginTop="?android:attr/actionBarSize">
-
+    android:layout_marginTop="?android:attr/actionBarSize"
+    android:id="@+id/dialtacts_frame"
+    >
     <com.android.contacts.activities.DialtactsViewPager
         android:id="@+id/pager"
         android:layout_width="match_parent"
         android:layout_height="match_parent" />
-
-    <!-- For phone search UI -->
-    <fragment
-        android:id="@+id/phone_number_picker_fragment"
-        class="com.android.contacts.list.PhoneNumberPickerFragment"
-        android:layout_height="match_parent"
-        android:layout_width="match_parent" />
-
 </FrameLayout>