diff options
author | Katherine Kuan <katherinekuan@google.com> | 2011-06-22 19:03:50 -0700 |
---|---|---|
committer | Katherine Kuan <katherinekuan@google.com> | 2011-07-01 17:45:42 -0700 |
commit | c6b8afe730255537978f2c938cca6986cae63c34 (patch) | |
tree | 6db18fe83a6923feece8a8e70aba28ba5ec15e03 /AndroidManifest.xml | |
parent | fd33cc3ab956222dffa6b669a13a614747a5cdff (diff) | |
download | packages_apps_Contacts-c6b8afe730255537978f2c938cca6986cae63c34.tar.gz packages_apps_Contacts-c6b8afe730255537978f2c938cca6986cae63c34.tar.bz2 packages_apps_Contacts-c6b8afe730255537978f2c938cca6986cae63c34.zip |
Group editor on tablet
- Allow autocomplete to add new members which presents
the user with suggestions from the raw_contacts table
with the same account name and type as the group
- Hook up the "new" and "edit" group buttons on the tablet
- Once the user exits the editor, update the group list
and scroll the group list to the group that was just edited
- Allow rename of groups (make the names of read-only groups
not editable)
- Allow removal of members
- Hook up the done / cancel / up / back buttons
- TODO: Be able to create a new group + add new members
in the same transaction. Then the new group editor
will allow adding members at the same time. Currently
you can only add a name to a new group. Once it's created,
then you can go and edit the membership.
- TODO: Bulk add/remove members in one transaction when the
user exits the editor. Currently it's saving the change
after you modify the membership list (even before you hit
the "Done" button in the editor).
- TODO: Add member status message and chat presence
- TODO: Add UI for non-editable groups
Change-Id: I1f32a28862c358b8bd1469666743cd240d28f80b
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r-- | AndroidManifest.xml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 88395bf2f..d99577c99 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -353,6 +353,12 @@ android:label="" android:theme="@style/GroupDetailTheme" /> + <!-- Create a new or edit an existing group --> + <activity + android:name=".activities.GroupEditorActivity" + android:theme="@style/ContactEditorActivityTheme" + android:windowSoftInputMode="adjustResize" /> + <!-- Used to show QuickContact window over a translucent activity, which is a temporary hack until we add better framework support. --> <activity |