Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

11
votes
5answers
17k views

Android - How do I load a contact Photo?

I'm having trouble loading a photo for a contact in Android. I've googled for an answer, but so far have come up empty. Does anyone have an example of querying for a Contact, then loading the Photo? ...
9
votes
2answers
431 views

Create Invisible Contacts Group in Android

What I want is to hide contacts from the contact list. So to achieve this I tried a lot and searched a lot. Finally I've come to know that we can generate an invisible group and we can assign ...
8
votes
1answer
161 views

Modifying contact information

I'm trying to insert and update a piece of information on an existing contact so I've created a sample application in order to develop the functionality. All I want my sample app to do is to insert ...
8
votes
4answers
2k views

android edit contact

hi im trying to add a phone number to an existing contact on android 2.1. Im currently using: ContentValues values = new ContentValues(); ...
8
votes
1answer
11k views

get contact info from android contact picker

hi im trying to call the contact picker, get the persons name, phone and e-mail into strings and send them to another activity using an intent. So far this works Intent intent = new ...
7
votes
3answers
376 views

How to create a contact programmatically

public boolean createContact(String name, String number, String email) { boolean success = true; try { ContentValues contentValues = new ContentValues(); ...
7
votes
2answers
2k views

What does COLLATE LOCALIZED ASC stand for?

private Cursor getContacts() { // Run query Uri uri = ContactsContract.Contacts.CONTENT_URI; String[] projection = new String[] { ...
6
votes
1answer
157 views

Android 3.0 - How to retrieve ALL contacts via ContactsContract

I am working on an Android Honeycomb (v3.0) application that has a requirement of displaying ALL contacts stored within the Google account that is registered on the device. One of the problems I am ...
5
votes
2answers
224 views

How can I retrieve contact events synced from Google Contacts without a year?

I'm using the code below to retrieve a cursor for events and contacts and it's working just fine for events with a year specified. Unfortunately, events where only the day and month are set are not ...
5
votes
3answers
1k views

How to get the facebook id from a user through the ContactsContracts API?

I synced my address book with facebook and can now access my facebook profile through my addressbook. I want to read the facebook data that is connected to the account from another application and get ...
4
votes
2answers
2k views

How do I make my Android ContentObserver for ContactsContract detect a added, updated or deleted contact?

I am able to get a generic notification "that there was a change to the contacts DB", but I want to know the specific record that was inserted, updated, or deleted. Following is the code that gets ...
4
votes
3answers
266 views

Why are some contacts censored from apps on android?

If you try the Contact Manager that comes with Android 2.2 Froyo it will give you access to all contacts in the sqlite database via Contact ContentProvider. But if you write an app that is not ...
3
votes
1answer
107 views

Adding an event to ContactsContract.CommonDataKinds.Event in Android via contact picker

In an activity of my Android application, I would like to open the content picker. And when the user selects one of those contacts, there should be a new entry (an event with type "other") that is ...
3
votes
1answer
114 views

Receive contact changes (added, deleted and changed)

Isn't there a timestamp for each contact? I need to be notified by a change (add, delele or change) to a contact. I've implemented a ContentObserver, but trough this method I'm only able to be ...
3
votes
2answers
96 views

Android and Facebook Contact Picker Issuer

The short version of my question is: How do I access the phone numbers of contacts that were synced from 3rd party apps? Here is the long version: I can access the regular Android contacts pretty ...
3
votes
1answer
249 views

How to define Photo uri in ContactsContract.Contacts?

I am trying to develop a query to retrieve contacts. However, Eclipse keeps telling me that PHOTO_THUMBNAIL_URI and PHOTO_URI cannot be resolved or is not a field. Here's my code: Uri uri = ...
3
votes
1answer
809 views

What is the difference in contacts versus raw-contacts?

I have a "dump" utility that I am using to study the ContactsContract since I don't quite get it in the documentation. When I dump the contacts it counts 263 records in the table, however, the ...
3
votes
3answers
2k views

What is the default Account Type / Name for contacts on Android Contact Application?

I would like to read contacts from ContactsContract API which belongs only to Phone / SIM and would like to avoid contacts synced from other apps like facebook and gmail. I tested my code on simulator ...
3
votes
1answer
671 views

How to query Android 2.x Contacts with Emails and/or Phone Numbers?

Let's brute force your garden-variety Android 2.x Visible Contact ID/Names cursor (via ContactsContract): Cursor c = getContentResolver().query( Contacts.CONTENT_URI, new String[] { Contacts._ID, ...
3
votes
1answer
340 views

Insert contacts Last Name using Intent android

Google should really document their contacts API, its really irritating to find out how to insert specific details. Anyways, I want to send following contact details to Contact native application of ...
2
votes
1answer
136 views

Get first and last name of a contact rather than single display name?

I am currently working with the Android Contacts content provider and currently can access a contacts full display name without issue using the following code: String[] PROJECTION = new String[] { ...
2
votes
2answers
129 views

Where to save checkbox selected contacts in ListActivity?

I am using a custom List adapter to display a list of all contacts, and the user will then select contacts by clicking a checkbox. What is a good method of saving the selected contacts to preferences, ...
2
votes
1answer
662 views

How to update Android contact company?

I recently created a Sync adapter for my app, It will sync contacts I am getting via a web request with the contacts in the phone. I have no problem adding the contact, however I cannot get the ...
2
votes
1answer
421 views

BadParcelableException: ClassNotFoundException when getting name of picked contact

I use the Contact picker to get the name of a specific contact. For Eclair and later I use: startActivityForResult(new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI), ...
2
votes
1answer
149 views

How to retrieve the best given name of a User in Android?

I retrieve the display name of a user via the ContactsContract API in Android. Now I want to retrieve the given(first) name of this user. There are specific Rows in the data table that contain the ...
2
votes
3answers
564 views

Android ContactsContract.Contact missing constants from the API?

I've been using the ContactsContract api for some time now and I've come across two "columns" listed in the API page for ContactsContract.Contacts that do not appear to actually be assessable. The ...
2
votes
3answers
2k views

How to use the contact pictures synced by Facebook for Android

I'm having Facebook for Android on my phone which automatically synces the FB profile pictures of the people in my contact list to my phone. I'd like to use those pictures within my app where I ...
2
votes
2answers
5k views

Retrieve Contact Phone Number From URI in Android

I am trying to get the contact's phone number after I have retrieved their ID number from the built-in activity. However, whenever I query the database using the cursor in my code below -- I get zero ...
2
votes
1answer
659 views

How to code ContactsContract so that it runs in 2.2 and doesn't crash 1.5?

I have the following piece of code in my Android application that looks up a contacts ID, I have just changed the target from 1.5 to 2.2 but with a min SDK of 3 (1.5) so that I can use the ...
2
votes
6answers
5k views

New contacts created using ContactsContract do not appear in Contacts app

I'm using the following piece of codes to create a new contact. It follow closely the ContactManager example provided by Android. The problem is, the created contacts do not appear in the Contacts ...
1
vote
1answer
22 views

What is replacement for Contacts.People.NOTES?

This is sort of out of curiosity question. Reading through Pro Android 3 book and I came upon Contacts.People.NOTES. Since People is inner class of Contacts class which been deprecated and replaced by ...
1
vote
0answers
56 views

How do you get your google ID from your phone?

I want to get the google id from the phone. How do I do that? If I sync the phone with google all my contacts in my contact book that have a google account will be synched and a link to a website can ...
1
vote
0answers
35 views

Strange behaviour when calling contact picker activity

Experiencing some strange behaviour when trying to pick a contact and return it to my activity. Everything works except I'm seeing some contacts which should not be displayed. e.g. people I'm ...
1
vote
1answer
216 views

Load a contact's picture into a listview instead of the default?

I created a listview containing my contacts... *tab_contact_list.xml*, contains the listview: <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
1
vote
1answer
146 views

Set QuickContactBadge image to contact's profile picture

I'm using a QuickContactBadge and want it to display the contact's profile picture. This is how I'm loading the contact info: Uri contactUri = ...
1
vote
1answer
64 views

Android - Receive Contacts changes on telephone

Is it possible to have a broadcast receiver or service to be notified when a phone contact is added, deleted or modified? I am making an application that needs fast access to phone contact, for what ...
1
vote
1answer
66 views

Loading contact photos into contact list: random contact photos appear in wrong places

I have loaded my contacts into a list using extended SimpleCursorAdapter and now I'm trying to load the contact photos. When running the code random contact photos appear next to random contacts, even ...
1
vote
1answer
137 views

Android ContactsContract.Contacts slow

I want to put all the contacts in my phone into an array. I am using the code below but it takes 3-4 seconds to put all of them into the array. To accelerate the process, I am collecting only those ...
1
vote
0answers
49 views

ContactsContract.CommonDataKinds and empty contacts list

I am new to Android development (coming from a C# background) and have been working through some examples in a book. I have a question about the following lines of code. public void onClick(View ...
1
vote
1answer
126 views

Filter out Facebook Contacts from the Contact Picker

I have a contact picker in my application that keeps crashing when a facebook contact is selected. I won't have the code I'm using to open the picker in front of me, but I believe I'm accessing the ...
1
vote
0answers
90 views

Android: How to get the name and photo from ContactsContract?

I am new to android, I need to get the the name and photo from the address book, and display them in a list view with ImageView and TextView. Been goolging around for hours, too many different ...
1
vote
1answer
99 views

Proper usage of ContactsContract

I have some struggles to find an up-to-date example how to properly handle ContactsContract to CRUD (create,read,update,delete) contacts. Most examples make use of "People", which is deprecated. Maybe ...
1
vote
2answers
207 views

Map values between different data sources

Is there any chance to get a easy way to sync data, in this case contacts, between the android contentprovider and a JSON-based server? My problem is, that android uses the cursors and stuff and on ...
1
vote
3answers
421 views

Selecting a number from user with multiple numbers when using the contact picker

I'm trying to allow a user to select a phone number from a contact using the contact picker. However, right now all the examples I see online show how you can select a contact, but I am hoping to ...
1
vote
0answers
203 views

How to get google contacts but not gmail contacts?

I'm extracting the information of contacts stored in the phone. I'm working on 2.1. I'm able to extract every RawContacts from the query including "auto gmail contacts" which I do not need. I've ...
1
vote
1answer
572 views

Get all contacts and their details (e.g. postal address) in one OUTER JOIN query

I know how to retrieve contact data for specific contacts. However, i can't find a way to get all contacts plus some of their details in a single query. The following code gets all contacts having a ...
1
vote
1answer
690 views

Android : Adding Notes to Existing Contacts

I'm trying to use the ContactsContract api to add some notes to my contacts. I'm not sure I fully understand the various contact IDs and Raw Contact IDs. My problem seems pretty similar to what is ...
1
vote
1answer
716 views

get contacts with email id

i need to get contacts information(cursor) with email. they must be distinct. there must be one entry per contact if he has got an email.how to do it? i am targetting new contacts api comes with 2.0 ...
1
vote
0answers
415 views

Problems with adding photo to an existing contact

I'm having a problem with the process of adding a photo to a contact. My flow is like this: i'm getting the _ID from the ContactsContract.PhoneLookup then i search in ContactsContract.Data for all ...
1
vote
0answers
323 views

How to add/save Postal Address to Contacts in Android Application

I am trying to save postal address to contacts in my android application, but all I am able to save is email and phone number. Postal address is never saved to that contact. Please help me how to ...

1 2 3