summaryrefslogtreecommitdiffstats
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorKatherine Kuan <katherinekuan@google.com>2011-05-10 18:26:15 -0700
committerKatherine Kuan <katherinekuan@google.com>2011-05-11 14:28:45 -0700
commit9add0e5ef2a267acbe104e04f4cf6ab24cb8ba3e (patch)
tree28f1d5b5de77e96bf5007f2710c5eb9bba345cb7 /AndroidManifest.xml
parent176595defd217b0198e6f3874ae3fa260b1874a3 (diff)
downloadpackages_apps_Contacts-9add0e5ef2a267acbe104e04f4cf6ab24cb8ba3e.tar.gz
packages_apps_Contacts-9add0e5ef2a267acbe104e04f4cf6ab24cb8ba3e.tar.bz2
packages_apps_Contacts-9add0e5ef2a267acbe104e04f4cf6ab24cb8ba3e.zip
Add groups tab and show list of groups
- New groups activity, fragment, and adapter classes, as well as and associated XML layouts - For phone only, tablet UI is unaffected Bug: 4409350 Change-Id: Ibeb592142e5ddc1efa5701472bbc72bde11d9760
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index 83331dad1..ed03e7728 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -336,6 +336,22 @@
</intent-filter>
</activity>
+
+ <!-- List of groups -->
+ <activity android:name=".activities.GroupBrowserActivity"
+ android:label="@string/contactsGroupsLabel"
+ android:theme="@style/ContactBrowserTheme"
+ android:launchMode="singleTop"
+ android:clearTaskOnLaunch="true">
+ <!-- TODO: Remove this temporary intent action name when the fragmentization
+ work is done. -->
+ <intent-filter>
+ <action android:name="com.android.phone.action.GROUPS_LIST" />
+ <category android:name="android.intent.category.DEFAULT" />
+ <category android:name="android.intent.category.TAB" />
+ </intent-filter>
+ </activity>
+
<!-- Used to show QuickContact window over a translucent activity, which is a
temporary hack until we add better framework support. -->
<activity