More work on modal field editors
Bug:2680726
Change-Id: I6685fd6d20358bc2f83b2b81294106e86db0fcee
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 62543d0..307b6cc 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -397,7 +397,7 @@
</intent-filter>
</activity>
- <!-- Edit (or insert) details for a contact -->
+ <!-- Edit and insert details for a contact -->
<activity
android:name=".activities.ContactEditorActivity"
android:theme="@style/TallTitleBarTheme">
@@ -438,6 +438,7 @@
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.EDIT" />
+ <action android:name="android.intent.action.INSERT" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="vnd.android.cursor.item/email_v2" android:host="com.android.contacts" />
</intent-filter>
@@ -449,6 +450,11 @@
android:name=".util.EmptyService"
android:exported="false" />
+ <!-- Service to save a contact -->
+ <service
+ android:name=".views.ContactSaveService"
+ android:exported="false" />
+
<!-- Views the details of a single contact -->
<activity android:name="ContactOptionsActivity"
android:label="@string/contactOptionsTitle"