summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorblong <blong@codeaurora.org>2015-08-26 10:08:17 +0800
committerblong <blong@codeaurora.org>2015-09-07 15:34:47 +0800
commitcd612cc75602f7b615e90f4cc4e608b3f8b03ef1 (patch)
tree8968f0d14d9e254ec144cfd09e401cb1aaa54c49 /AndroidManifest.xml
parenta03f0b93f11460cfb61519ea225b463a382e503b (diff)
downloadpackages_apps_Contacts-cd612cc75602f7b615e90f4cc4e608b3f8b03ef1.tar.gz
packages_apps_Contacts-cd612cc75602f7b615e90f4cc4e608b3f8b03ef1.tar.bz2
packages_apps_Contacts-cd612cc75602f7b615e90f4cc4e608b3f8b03ef1.zip
Add multi pick contacts
- Add multi-pick for contacts,email,callog and phone - Add batch delete for contacts and callog Change-Id: If8d94d62e55e0f2207867cf6a2dcdc20984fecc4
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml36
1 files changed, 36 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index d86d69bcf..926ae8bd3 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -448,6 +448,42 @@
android:label="@string/launcherActivityLabel"
android:theme="@style/BackgroundOnlyTheme" />
+ <activity
+ android:name=".activities.MultiPickContactActivity"
+ android:windowSoftInputMode="stateHidden|adjustResize"
+ android:screenOrientation="nosensor"
+ android:theme="@android:style/Theme.Holo.Light"
+ android:configChanges="orientation|keyboardHidden|layoutDirection">
+ <intent-filter>
+ <action android:name="com.android.contacts.action.MULTI_PICK" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <data android:mimeType="vnd.android.cursor.dir/person"/>
+ <data android:mimeType="vnd.android.cursor.dir/contact"/>
+ <data android:mimeType="vnd.android.cursor.dir/raw_contact"/>
+ </intent-filter>
+ <intent-filter>
+ <action android:name="android.intent.action.DELETE" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <data android:mimeType="vnd.android.cursor.dir/person"/>
+ <data android:mimeType="vnd.android.cursor.dir/contact"/>
+ <data android:mimeType="vnd.android.cursor.dir/raw_contact"/>
+ </intent-filter>
+ <intent-filter>
+ <action android:name="com.android.contacts.action.MULTI_PICK_CALL"/>
+ <category android:name="android.intent.category.DEFAULT"/>
+ </intent-filter>
+ <intent-filter>
+ <action android:name="com.android.contacts.action.MULTI_PICK_EMAIL"/>
+ <category android:name="android.intent.category.DEFAULT"/>
+ <data android:mimeType="vnd.android.cursor.dir/person"/>
+ <data android:mimeType="vnd.android.cursor.dir/contact"/>
+ <data android:mimeType="vnd.android.cursor.dir/raw_contact"/>
+ </intent-filter>
+ <intent-filter>
+ <action android:name="com.android.contacts.action.MULTI_PICK_SIM"/>
+ <category android:name="android.intent.category.DEFAULT"/>
+ </intent-filter>
+ </activity>
<service
android:name=".common.vcard.VCardService"
android:exported="false" />