Add a second fragment to select the mailbox

After choosing the account, we need to select a mailbox for the shortcut.
In order to replace the fragment, we cannot hardcode it in the XML. Instead,
we need to dynamically create it.

Also, restructure the fragment class and rely on the class to "do the right
thing"

Change-Id: I752ad5bbdf2484332ec2b73852cae74a5d2092fa
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index b61b0b3..7d4df6c 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -179,9 +179,9 @@
             >
         </activity>
 
+        <!-- Don't need to set the title; it will be set programatically -->
         <activity
-            android:name=".activity.AccountShortcutPicker"
-            android:label="@string/account_shortcut_picker_title"
+            android:name=".activity.ShortcutPicker"
             android:enabled="false"
             android:theme="@android:style/Theme.Holo.DialogWhenLarge"
             >