bklik's question seemed to indicate that he was dumping the contact
list programactically via his own activity.  I was just wondering if
the contacts API was returning all contacts and the activity needed to
do the filtering.

On Dec 8, 4:48 pm, Eric Mill <[EMAIL PROTECTED]> wrote:
> The "Suggested Contacts" category was specifically created in Gmail so
> that G1 users wouldn't get swamped with a massive, irrelevant contacts
> list.  If the G1 is populating any view of contacts from that list,
> something is wrong.
>
> I see this too, specifically when Any Cut populates a view of contacts
> for you to create direct call shortcuts to, it includes duplicates of
> many contacts, duplicates which don't appear in my regular Contacts
> list in the dialer.
>
> -- Eric
>
> On Dec 7, 9:50 pm, Paul <[EMAIL PROTECTED]> wrote:
>
> > Did you check your gmail account under Contacts --> suggested contacts
> > to see if the people you're seeing appear there as well?  GMail
> > creates a hidden contact for everyone you've traded emails with and
> > perhaps the hidden people are coming from here?
>
> > On Dec 6, 4:07 pm, bklik <[EMAIL PROTECTED]> wrote:
>
> > > Did anyone else find that when you dump all your contacts to a
> > > ListView, you see "hidden" contacts that don't show up in your regular
> > > contact list under the Dialer?
>
> > > I found nameless contacts, contacts with names but no numbers.  When I
> > > returned their email address, I found emails to sale-
> > > <number>@craigslist.org, as well as one for a Dana Thompson and a TJ
> > > Brown.
>
> > > These are people I don't know, and never new existed.  And oddly
> > > enough, the Dana Thompson individual is some CPA in Maryland 
> > > (see:http://danathompsoncpa.com/Contact_Us.htm).
>
> > > Now, I got my phone new, in a sealed box, from a just opened box
> > > shipped to the T-Mobile store where I picked it up.  I'm wondering if
> > > they are part of the image used to make the phone?  It's very odd.
>
> > > Here's the code I used to return the contacts:
>
> > >         final Uri data = Uri.parse("content://contacts/people/");
> > >         final Cursor c = this.managedQuery(data, null, null, null,
> > > null);
> > >         String[] from = new String[] {People.NUMBER, People.NAME};
> > >         int[] to = new int[] {R.id.itemNumber, R.id.itemName};
>
> > >         SimpleCursorAdapter adapter = new SimpleCursorAdapter(this,
> > > R.layout.listitemlayout, c, from, to);
> > >         ListView lv = (ListView)this.findViewById
> > > (R.id.contactListView);
> > >         lv.setAdapter(adapter);
>
> > > Anyone else getting weird results?
>
> > > Brenton
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to