History log of /packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
Revision Date Author Comments (<<< Hide modified files) (Show modified files >>>)
0a49afa2ad697307cc04ef4cb86570574fa720f2 06-Dec-2016 Gary Mai <garymai@google.com> Collapse common package (2/2)

Ran optimize imports on the project as well to re-order everything
which would have changed because of removing common.

Test: Built GoogleContacts, GoogleContactsTests, Contacts,
ContactsTests and ran unit tests.

Bug: 33252370
Change-Id: I881f0ba8b8fef002b6eeefa9a16b34f15b2fd2a9
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
3f6a2444e0134b7380cdb2e13abf4bf1163336d0 05-Dec-2016 Arthur Wang <wuwang@google.com> Collapse res-aosp and res-icons into res folder for AOSP Contacts (1/2)

bug:31022536
Change-Id: I0434710d92027e59ccd97e27ebd09f1668346684
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
69c182afb0e6d82a341a28b4317aa703af768906 05-Dec-2016 Gary Mai <garymai@google.com> Collapse common packages (1/?)

Move the majority of packages out of common. When trying to move
common.activity to activities every file switched from a rename to
separated deletes and adds. Will move tests and the rest of common
in a separate CL.

Test: Built GoogleContacts, Contacts, GoogleContactsTests,
ContactsTests.

Bug: 33252370
Change-Id: I9ffb20038dee255ef5f83002b7870265771b08c5
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
a0233a048858f1593ea4924e9c5036f39aedbcdd 02-Nov-2012 Chiao Cheng <chiaocheng@google.com> Moving ContactListItemView and dependent classes.

Further clean-up of PhoneFavoriteFragment in Dialer app to move all necessary
dependencies into Contacts Common package.

Bug: 6993891
Change-Id: I3dfce84ad01932450dc09588c22903e7307d7da0
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
e0b2f1e2d01d1ac52ba207dc7ce76971d853298e 12-Jun-2012 Chiao Cheng <chiaocheng@google.com> Global import order fix.

Changed import order to be in accordance with style guide:
http://source.android.com/source/code-style.html#order-import-statements

Static imports will be placed at the top since most existing files used that
convention. It is also a style that can be handled by both eclipse and intellij.

Change-Id: Ia7013c7a2d88e5fefb8f4975d121f7fcd3fcc462
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
2f77c85543e6c497e63cd0e216b70e58c1d13ec3 31-Mar-2012 Daniel Lehmann <lehmannd@google.com> Various refactorings to prepare proper big picture loading

- Added a function to load a picture with ideal sampleSize
- Renamed xmls/java files for tiles
- ContactTileView is now abstract and has subclasses for each use-case
- Added mechanism to estimate the image-size in a tile before layout
- Changed the cross-fade in ContactPhotoManager to apply the fade to the
current picture instead of the default avatar. Reduces flickering

Bug:6202229

Change-Id: Ic8636d1b3349473163fb2424b5f74476fd435fb5
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
c84130ac45b7eb4ca8b2c725f8b1af2b55636078 15-Dec-2011 Daniel Lehmann <lehmannd@google.com> Show avatars in directory search

Bug:5455229
Change-Id: I59e0c0c1d1be20adb4a79a5492f4ba55360387da
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
6da2a2d472d562443a70f3d6a84ff6546dfcbc01 09-Nov-2011 Daisuke Miyakawa <dmiyakawa@google.com> Reduce a column for People contacts query

This will possibly reduce memory usage for a cursor.

See also Ie69b74bbabcc7211cf2b107c93980172da2d744e, which
removed the same column in the Phone query.

Bug: 5550672
Change-Id: I9f707ec1b645e90e3cf7ab7fe35c3af986f472a0
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
0647bdb63b41a968f6c07d1a1e600f5a0208d043 08-Nov-2011 Daisuke Miyakawa <dmiyakawa@google.com> Stop using "group" filter.

The filter had been used in HC but now just causes app crash on
People. This change removes relevant codes and just redirects
users to ALL filter.

Bug: 5581081
Change-Id: Ib4c9b6c2c89149070ec08008cb15c89c3ef5aaf8
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
ed90ea54323f212d87b27b04d7d627192afa6665 31-Oct-2011 Daisuke Miyakawa <dmiyakawa@google.com> Stop using DisplayNameFormatter and reduce a query column

setDisplayName()'s 3rd param "highlightingEnabled" never becomes
true in the current implementation and thus using the entire class
seems less meaningful. After removing the formatter class, we can be
sure one of primary and alternative name column won't be needed and
can be conditionally removed.

Per the observation above, this change removes the column for Phone
UI. Note that this does *not* optimize People side yet, since it has
quite different and more complicated configuration there.

Other fixes:
- replace getMarqueeText() with setMarqueeText(), since the former
implicitly requires unconditional "new String()", while the latter
doesn't.
- Use SpannableString instead of SpannableStringBuilder. Our prefix
highlighter is already using SpannableString, and we can expect
less GC by using exactly same classes for constructing spanned
CharSequence.
- Group query constants like I5ad0876ce469fbf86334e3f77b15cd240d9f761b
for cleaning our code and make it more consistent.
-- Legacy adapters aren't modified since they are legacy anyway. We
probably don't want to touch those files as much as possible.

TESTED:
- Phone UI and People UI work with display/sort order changes
- "(No name)" is shown correctly (mUnknownNameText is working)
- Prefix highlighting works correctly (in search screens)
- Pickers work with sort order change (primary/alternative)
- no performance regression at least (no visible performance improve
will occur)

Bug: 5550672
Change-Id: Ie69b74bbabcc7211cf2b107c93980172da2d744e
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
785f6d9471a64f61d431f922a9f3a498b31b87b1 30-Oct-2011 Daisuke Miyakawa <dmiyakawa@google.com> Remove unused columns from all contacts query

- remove ContactBrowseListContextMenuAdapter, which isn't used
- remove columns used only by the class
- remove SORT_KEY_PRIMARY which isn't used right now
- remove phonetic name

Bug: 5535731
Bug: 5265330
Change-Id: I60f28369395a95fbbc4b5048ff5a3227b323bd3f
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
ecfc26c3f9495f1a4efed69a1582ff2b0deb2c71 13-Sep-2011 Daniel Lehmann <lehmannd@google.com> New avatars

Bug:5074147

Change-Id: I583d22c63a7b617567c523efeed292ae1e2be7e4
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
84cac440813d6c151bf330998451ca1e3f6804b1 25-Aug-2011 Dave Santoro <dsantoro@google.com> App changes for handling profile DB split.

- Added a custom loader to load in the profile and contact list.
- Made the CursorLoader for ContactEntryListFragment and its
subclasses pluggable, so the default one could substitute in
the combined profile-and-contact list loader.
- The photo manager needs some awareness of the profile ID-space,
since it's doing bulk photo queries using a custom selection.
- Adapted Isaac's change to the section indexer to handle the
profile being out of consideration when doing the address book
index query.
- Removed uses of the ALLOW_PROFILE param, since it no longer exists.

Bug 5204577
Bug 5136432
Bug 5140891

Change-Id: I676b4cdeabe87b1b585c6c8df2cde51605777106
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
0155652987e0c792d89b5a37bb8dc6f14ffd209f 23-Aug-2011 Isaac Katzenelson <isaack@android.com> Remove semi-transparent first name on scrolling

Bug: 5197714 Semi-transparent "first name" effect doesn't go away

Removed the text animation when scrolling. This is not a fix
but a removal of the feature as was decided.

Change-Id: I6b4b7798ec2aea493ca464cffb4907fe21788b6f
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
f443194c03dd9ecfeecd3e6ef1fabb0945ada645 12-Aug-2011 Frank Sposaro <sposaro@google.com> Fixed presence icons for ContactTiles and ContactListItem.

-Does not draw offline icons
-Only draws circle icons

Bug: 5154620
Bug: 5137647
Change-Id: Ife500d4f7e580fcb4374eba560e153033db87a44
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
ead19c5eafee0ffb43b02a4ae75ac5244ad3f853 30-Jul-2011 Isaac Katzenelson <isaack@android.com> Support for local profile

Bug: 5121834 Support local profile
5086184 Account name is overlapped by number of contacts
5082317 Text is chopped on the top in contact list

1. New headers were added at the top of the contact list to
present an empty local profile.
2. Clicking the empty local profile opens the editor to allow
the user to create a local profile.
3. Profiles are shown at the top of the contacts list with the
"ME" header and the number of contatcs.
4. "Add to contacts" button and the starred button were removed
from the details view when it is a profile.
5. Fixed a problem with a header view that remained when you had
a profile or was in search mode.
6. Fixed problem with contacts count apearing in search mode

Change-Id: I45615616e03a603759888d9e7169a853b3328b14
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
8f59c2b18b73df6af3c808802620839f0a6a61d4 04-Aug-2011 Daisuke Miyakawa <dmiyakawa@google.com> Reflect recent UX design changes around filter capability

Include several related changes

- introduce filter option in phone search
-- have limited filter support in PhoneNumberListAdapter. There's
no easy way to share the logic for filtering as People UI
is taking care of Contacts/RawContacts table while Phone UI
needs to take care of Data table, though we may be able to have
some utility library for filter operations.
- have additonal layouts for filtered phone search. Along with it,
also introduce some pixel-perfect design for Phone/People apps
both for phone and tablet
- add "up" capability for CustomContactListFilterActivity
- launch CustomContactListFilterActivity directly from
AccountFilterActivity instead of relying on
their parent Activities (PeopleActivity and DialtactsActivity).
-- In the current structure, IME is shown during migrating
from AccountFilterActivity to CustomContactListFilterActivity
"only in Phone UI", as SearchView temporarily has a focus

FUTURE TODO:
Currently devices without hard menu key show overflow menu in
Phone search mode, while we want soft button on the right side
of search view.

Bug: 5104984
Bug: 5081251
Bug: 5121569
Change-Id: If935f13b33b105884a914b207fd096588825226e
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
81281eefd5aaf339cbfa080ddfa6c6f63caca71a 29-Jul-2011 Katherine Kuan <katherinekuan@google.com> Unknown contacts are missing "up" affordance on contact card

- Contacts without a name cause the ContactDetailActivity to have
a blank title and therefore no "up" affordance.

- Use "(no name)" instead of blank or "(Unknown)" and make it
consistent across contact card, contact list, contact tile adapter,
and quick contacts

- Fix NPE when adding social widget for contact with no display
name

Bug: 5061950
Bug: 5096795
Change-Id: Id242e0f6d8bfe835d44be448129fddadd146fdb6
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
045bc7f5d03bbe5947597d39b5ac77387425df7e 23-Jul-2011 Katherine Kuan <katherinekuan@google.com> Add status message to contact list

Bug: 5070817
Change-Id: I230c7cf7c4f0f6931fa6ddac4cddc9d3741835e9
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
87e324c46ea0c9034fd1cf5a884ef2b2cb9c2c7a 01-Jul-2011 Daisuke Miyakawa <dmiyakawa@google.com> Show quick contact in phone search UI

Change-Id: Ibc643162b9c74964b1b9e9bd89351203fb29d6b6
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
df4852fcc120be8097b8e2b333671eca434fdfae 24-Jun-2011 Dave Santoro <dsantoro@google.com> Renamed references to INCLUDE_PROFILE.

Bug: 4777097
Change-Id: Ief870cc57e6f9d102a8f8e1e97bbbb540cef1276
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
0a4d2258411478c7c78790cd55ba25c99f588c26 20-May-2011 Dave Santoro <dsantoro@google.com> Contacts UI changes for profiles.

The user's profile entry is displayed slightly differently from other Contacts.
The profile photo is 25% larger (e.g. 56dip -> 70dip) and rather than showing
the display name, it displays "My profile".

Section headers are also special-cased for the profile entry - it appears above
the section header rather than below it.

Change-Id: I6fd99d303c7dd1347031d3607741827ea2a31a0b
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
da5bf1cf60beef3de5e651a569fa544293683926 03-May-2011 Dave Santoro <dsantoro@google.com> Modifications to bold contacts' first names.

For lists and headers, this is calculated by using a similar technique as we
use in the list view for highlighting text when the sort order and display
order do not match - we look for the overlap point between the display name
and the alternate display name, and bold the leading or trailing part, based
on the display order.

For the edit view, we convert the display name into a structured name (via an
API extracted from the structured name editor code that calls into the provider
to handle splitting), and then bold the span corresponding to the contact's
given name.

This also fixes an issue with the alternate display order in which we weren't
honoring that preference on the contact details view.

Change-Id: I6af048725541996cb303810a56a1ad79fc276e11
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
813c0eefa3f243dbfae981fd5559163a198569cd 09-Feb-2011 Dmitri Plotnikov <dplotnikov@google.com> Full text search: switching to the new API.

This is half-done for now. The snippets will
need to be post-processed.

Bug: 2078420
Change-Id: I20d84835b6eff8553007f67f7c0fbb25a8de4fbe
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
95beed7d7ec229d916ce03b1136af958a1b5c6be 24-Jan-2011 Dmitri Plotnikov <dplotnikov@google.com> Removing section headers from pickers in search mode

Bug: 3381652
Change-Id: I88b4f206d19ab3e4bf7954f2961b2389a790aede
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
0edd4071ddcb23bf2a7b95582df0657de9ff0c60 19-Jan-2011 Dmitri Plotnikov <dplotnikov@google.com> Adding support for relationship navigation

Bug: 3362300
Change-Id: I3b281b4db8bdeb029fdb4981e9c6e5b3b3060c7e
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
04bad51421ca4adab40900324dc2e108f5554e04 17-Jan-2011 Dmitri Plotnikov <dplotnikov@google.com> Fixing issues with default selection in GAL results

Change-Id: I6246b3c409a0ffd24029e3cc276dfc2644bcb931
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
0c708094307e6c6b782095c854a1b545b6972b86 17-Jan-2011 Dmitri Plotnikov <dplotnikov@google.com> Preserving list selection when list is populated with stale data

Bug: 3352121
Change-Id: I7a553dbdf7d8a0e5d2af8536b8396ecd56b4a2ba
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
7d402246e9ac26e05eeb25528bc74083412d1a5a 10-Jan-2011 Dmitri Plotnikov <dplotnikov@google.com> Fixing issue with opening a contact from Talk

Bug: 3306923
Change-Id: I7d34b82a6e42478a1c3039fee1877bf6402e1ee8
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
9975edcc653647f15d7b06243dbb4b72d3bd56a0 05-Jan-2011 Dmitri Plotnikov <dplotnikov@google.com> Adding proper chat capability icons to contact list

Change-Id: If25b3041649b5c9442abe73729c234934314c316
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
93a05db5aa59dc031ccd5ce76f816f7b2ab1d3a4 23-Dec-2010 Dmitri Plotnikov <dplotnikov@google.com> Fixing selection management problems:

1. Clicking on a contact in QSB would not select the contact
and sometimes would not show it at all.
2. A really slow directory would prevent the first found contact
from being selected
3. If a request to view a non-existent contact was sent to the app,
it would sometimes fall into an infinite loop.

Bug: 3304574
Bug: 3304475


Change-Id: Id31582840535992550e33bc64674a0248ad7d66c
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
264023c04b75043fa77267fd1b940d0afb13421d 15-Dec-2010 Dmitri Plotnikov <dplotnikov@google.com> Removing dependency between filter loader and list loader

Change-Id: Iaeeb0071d34d9ed68c2704af2ba7fe8981ed435e
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
6e850a046fcea8ba82a793b43944051246d08180 28-Oct-2010 Dmitri Plotnikov <dplotnikov@google.com> Implementing new selection policies in Contacts

1. Selection is now persistent per filter
2. If there is no selection or selection not in the list,
display the first item on the list
3. After creating a new contact or per user request
select the newly created contact in the list. If
it is not in the list, change filter to "Contact"
and display that contact by itself.

Change-Id: I9343fe9d25c86c5d041954d2386f66da2a1bc41f
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
f6d358f37a222376bcc5fd159fcf98c22dc22931 26-Sep-2010 Daniel Lehmann <lehmannd@google.com> Fix loading of empty photo

Change-Id: I88b699aa0d8089b631e47cbd3ce0ad7299283b9b
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
eb68943db0db7a364c8d8f133874d157634dd34c 24-Sep-2010 Dmitri Plotnikov <dplotnikov@google.com> Loading contact photo from URI if ID is unavailable

Change-Id: Ibfb1de5d1a6bf6789179af330413003a1a8d9342
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
1228c817c5b4850a1ea52a95a860fe6a329462b1 23-Sep-2010 Dmitri Plotnikov <dplotnikov@google.com> No longer showing empty pictures for GAL contacts in the list

There is now a flag that tells us whether
a particular contact directory supports photos
or not. If not - we don't display a photo
placeholder for the corresponding contacts.

Change-Id: I74ce43c3490fd419a7138fa01a257d14f0b6a8b6
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
960818040c13640ee5c3d7216e5e5c964fc33443 23-Sep-2010 Dmitri Plotnikov <dplotnikov@google.com> Changing contact name ellipsis to TruncateAt.END on tablet

Change-Id: Id3b17fda68cf8dcdc8ab4b6e211b68365a3039db
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
f7d450d12508ea67d3170068dcdf1a226358b06f 16-Sep-2010 Dmitri Plotnikov <dplotnikov@google.com> Bringing display options to the browser screen

Change-Id: Ic316e51146ced2aef73a85d1ee5135c21d03a06c
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
6ecd438414f1f66ff60aef1fc8ac128e709948f5 09-Sep-2010 Dmitri Plotnikov <dplotnikov@google.com> Fixing selection in second partition of contact search

Change-Id: I846df85640f335f9b1c978b2473c784f3444a4f1
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
8c6955ff3c05e1f3899110701c3cb5559a492f1e 09-Sep-2010 Dmitri Plotnikov <dplotnikov@google.com> Smooth scrolling to selection after new/edit/copy

Change-Id: I8dd5702c6dc3a46b35fea1a3e851238f6e8a38f0
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
7e5865267a95991765dfe6751678b5cd677c9094 04-Sep-2010 Dmitri Plotnikov <dplotnikov@google.com> Bigger pictures in the two-pane list

Change-Id: I8bd95f6d5efb59443e96ee295fbe69e14921f7e1
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
39709a698e37d8a164579992fc6d1b72f856f384 03-Sep-2010 Dmitri Plotnikov <dplotnikov@google.com> Disabling QuickContact in the two-pane layout

Change-Id: I80386eef9069da518749d56c02fbe6a9b3a5abab
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
7ccdc1f5337f2cb7b311358c8bb3c68aef6213d1 03-Aug-2010 Dmitri Plotnikov <dplotnikov@google.com> Making contact selection lookup key based.

- We will no longer load the selected URI just to get
the contact ID
- We will base the selection in the list on the
pair of directoryId and lookup key
- Also, we will no longer require IS_RESTRICTED and IS_SUPER_PRIMARY
to be non-NULL

Change-Id: Ic093060a1c19413b276da35619ecbbed418e27dc
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
8773bcb491d18e88b4e3d1f9cf7c57f6bc8e69ed 16-Jul-2010 Dmitri Plotnikov <dplotnikov@google.com> Routing "view contact" requests to proper directories

Change-Id: I006a5f7a9f88ebb0e3ae2872ad646de87d4d6405
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
85787d01deb5e2dbe7eb3d05688de970a85eb532 14-Jul-2010 Dmitri Plotnikov <dplotnikov@google.com> Optimizing contact list scrolling

Change-Id: I75374373f4ad275409caf9ffa888288728870b66
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
cfc648986f569bde83715584a91f89ed28dd8335 10-Jul-2010 Dmitri Plotnikov <dplotnikov@google.com> Fixing issues with selection preservation including search

We have to do quite bit of work here because contact IDs
are unstable.

Change-Id: I461e1600cd686a2cf5e2dc6f931c7132853f7636
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
fe3f79046be7012349fe9cac0fa89c00945ce737 08-Jun-2010 Dmitri Plotnikov <dplotnikov@google.com> Making Directory search UI work in the Goop mode

Change-Id: I5ed3909179b7f65a9defe3ab5b50ebe07521f9ca
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
e124722daa8a4b31308d53e3f0457c3b66a20ae5 03-Jun-2010 Dmitri Plotnikov <dplotnikov@google.com> Reworking contacts list adapters for the new CompositeCursorAdapter API

Also redesigning PinnedHeaderListAdapter

Change-Id: Ia4a2e7bb449fc82e1c3ac9b7a3f0c54a8e4d9d38
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
e4d32d92b10c1c1ce89c7a3ee4111a030e6afcf9 11-May-2010 Dmitri Plotnikov <dplotnikov@google.com> Join activity is converted to loaders/fragments

Change-Id: I3d02fac52daffa5e0921a05fcad6932bc94e7274
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
413772711054c9fca8bf0c22bc81f613c883ae7e 07-May-2010 Dmitri Plotnikov <dplotnikov@google.com> Now supporting legacy contact picker in the Loader/Fragment solution.

(Except search)

Change-Id: Ia36f286dc3009f0a388be2802d97ee296d74d1e8
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
b6c7c6f8feddc476f84e28289fe9491327db1788 05-May-2010 Dmitri Plotnikov <dplotnikov@google.com> Contact picker restored to some extent

Change-Id: Ib3b5f099dd479a73c944918c8e88e85633c375af
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
7c5286ed8ba0d7fbe3683b560f69b3a2d4ff1e2a 05-May-2010 Dmitri Plotnikov <dplotnikov@google.com> Bringing Call button back to Strequent view

Change-Id: I5281f6aa3d866a514b918b2add8eff6caa4b0762
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
238d9847d8f2ace658fb7337c8847a2088ddc9d1 04-May-2010 Dmitri Plotnikov <dplotnikov@google.com> Restoring Strequents in Contacts

Call button will come back in the next CL.

Change-Id: I98b1991f7ac4cd12a252090634874ef90551e96f
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java
e44b043f8a49c0974bd2f705f98ac3277aaf1b67 01-May-2010 Dmitri Plotnikov <dplotnikov@google.com> (cont) Now using loaders and LoaderManagingFragment

The change is partial and for now Favorites and
lots of other things are broken.

Change-Id: I1eb4f692e2d427473b179a3b3b00ef5233507f67
/packages/apps/Contacts/src/com/android/contacts/list/ContactListAdapter.java