Move over conversation list items.

Note:
Will have to work out the placement of fwd/reply indicators
and important exchange indicator
This doesn't do anything with labels
This doesn't handle checkboxes or selections yet
This is basically just a port of the coordinates system, xml, and assets
Change-Id: I9b55fab81e7b27ede602d2776ce16537c13bcefb
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index a57d8cf..3cd090f 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -5,19 +5,18 @@
       android:versionName="1.0">
 
     <application android:icon="@mipmap/ic_launcher_mail"
-        android:label="@string/app_name">
+        android:label="@string/app_name"
+        android:theme="@android:style/Theme.Holo.Light">
         <activity android:name=".UnifiedEmail"
-                  android:label="@string/app_name"
-                  android:theme="@android:style/Theme.Holo.Light" >
+                  android:label="@string/app_name">
             <intent-filter>
                 <action android:name="android.intent.action.MAIN" />
                 <category android:name="android.intent.category.LAUNCHER" />
             </intent-filter>
         </activity>
 
-        <activity android:name=".compose.ComposeActivity"
-                  android:theme="@android:style/Theme.Holo.Light" />
-        <activity android:name=".browse.LabelItem"
-                  android:theme="@android:style/Theme.Holo.Light" />
+        <activity android:name=".compose.ComposeActivity" />
+        <activity android:name=".browse.LabelItem" />
+        <activity android:name=".browse.BrowseListActivity" />
     </application>
 </manifest>