related to accessing contacts(CRUD, operations on contacts like messaging) from contact-list or address book in mails, android, iphone, windows-phone or facebook.
72
votes
8answers
127k views
How to call Android contacts list?
I'm making an Android app, and need to call the phone's contact list. I need to call the contacts list function, pick a contact, then return to my app with the contact's name. Here's the code I got on ...
80
votes
8answers
69k views
How to read contacts on Android 2.0
I'm working on Android 2.0 and am trying to receive a list of all contacts.
Since android.provider.Contacts.People is deprecated, I have to use android.provider.ContactsContract, But I can't find a ...
20
votes
1answer
24k views
get contact info from android contact picker
I'm 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 ...
28
votes
5answers
15k views
Programmatically Request Access to Contacts in iOS 6
Since updating to iOS 6 I've noticed that my code to add a contact to iPhone's address book no longer works. I believe this is a permission related problem, since Apple now requires user permission ...
4
votes
1answer
9k views
How to obtain all details of a contact in Android
Given a contact id, I can obtain various contact details (like name, phone, email-id, etc) by making different queries for a each of these fields.
But is there a method to obtain all the details ...
14
votes
6answers
35k views
Read all contact's phone numbers in android
I'm using this code to retrieve all contact names and phone numbers:
String[] projection = new String[]{
People.NAME,
People.NUMBER
};
...
8
votes
5answers
10k views
Taking contact list from hotmail gmail yahoo in java? [closed]
most of social networks does this. when you register one of them for example twitter it says why dont you invite your friends from hotmail or yahoo or gmail. and expect us to give our credentials and ...
5
votes
2answers
10k views
Android: Retrieve contact name from phone number
I would like to retrieve the name of a contact associated with an incoming telephone number. As I process the incoming number in the broascastreceiver having a String with the name of the incoming ...
13
votes
4answers
14k views
Send SMS through PhoneGap on Android
I am exploring capabilities and features of PhoneGap. I have gone through the PhoneGap site. Is there any possibility (or) workaround to send text messages and access phonebook information of Android ...
3
votes
2answers
5k views
Getting Number from Contacts Picker
I am trying to get a contacts name and phone number after a user has picked a contact from the Contact Picker. I am attempting to make my application work for SDK v3 and up so I created an abstract ...
8
votes
2answers
11k views
Round button in Android
I want to create a circular button having a plus and minus sign on to this and exactly used in Android
Contacts application like shown in the image as below:
16
votes
3answers
9k views
How to access contacts list in Windows Phone 7?
How do you access the contacts store (the contact list) within Windows Phone 7?
Thanks!
update: It seems that this might be available in the next version of WP7, Mango:
...
44
votes
7answers
11k views
How does Django Know the Order to Render Form Fields?
If I have a Django form such as:
class ContactForm(forms.Form):
subject = forms.CharField(max_length=100)
message = forms.CharField()
sender = forms.EmailField()
And I call the ...
5
votes
1answer
2k views
Android - New Data record is added to the wrong contact
I'm trying to add Data record to an already exist contact, I find the contact using phone lookup, i take the contact _id field, and add a new data with raw_contact_id set to the _id field.
on some ...
8
votes
2answers
1k views
Android How to send multiple contacts are attached in single .vcf file and send to mail?
In my App number of contacts are attached to single .vcf file and that file sent to mail, try to this one all contacts data display in log cat, but unable to send all data attached to single .vcf ...
2
votes
2answers
4k views
Android get a cursor only with contacts that have an email listed >android 2.0
i have the following code to get contacts from content provider
String[] columns = new String[] {
ContactsContract.Contacts.DISPLAY_NAME,
...
2
votes
1answer
1k views
Android Contacts - Update Note
Im using the new'ish API to insert/update contacts on my phone and I'm using this method to updates them..
String selectArgs1 = Data.CONTACT_ID + "=? AND " + Data.MIMETYPE + "='" + ...
0
votes
1answer
4k views
Android: Set contact photo in a ListView with name and number
I'm creating an app that needs to display the phone contacts with its photo, name and number. I've created a ListView and can show contacts and numbers with a generic photo, but I can't show contat's ...
3
votes
1answer
3k views
How can I set a ringtone for an individual contact on Android?
How can I set a ringtone for an individual contact on Android ?
I have found a way to set the default ringtone that applies to all contacts without an individual ringtone. But that is not what i'm ...
5
votes
3answers
5k 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 ...
2
votes
4answers
1k views
Access contacts and get email address
I have a code snappet for accessing to Contacts . When user click the button then the contacts list will be open and user can choose a person from contacts and the person's email adress should be ...
-3
votes
3answers
7k views
update contact details on Android
I would like my code to update contact details (like name, phone number, email, organization details, etc) in the android contact book. I was successful in modifying a few (name, phone number and ...
3
votes
1answer
4k views
contact api storing contact as a invisible contact.how to make it visible?
i am trying to add a contact in android using getContentResolver.
first i created a ArrayList ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();
then ...
2
votes
1answer
3k views
Load contact photo in a listview performance
I want to display contact's photo in a ListView. I am facing performance problem(Scrolling is not smooth) when there is a large number of contacts. I am using ArrayAdapter's getView method to assign ...
2
votes
2answers
7k views
Android Api - get mobile number from contacts
I tried so much tutorials, and read a lot here at SO, but i cant solve my problem:
When a button is clicked, the user can choose the mobile number of a contact. Actual I can get the name of the ...
4
votes
2answers
1k views
retrieve contact's nickname
I want to get the nickname of a contact from addressbook. I start with his phone number, query it and want the nickname (aka alias) as a result.
Cursor cur = ...
3
votes
2answers
7k views
Insert contact in Android with ContactsContract
I am trying to add a new contact to the Android 2.2 contacts directly.
//this code doesn't work
ContentValues cv=new ContentValues();
cv.put(ContactsContract.Contacts.DISPLAY_NAME, "TESTEST");
...
2
votes
1answer
580 views
honeycomb sync adapter features for editing contacts
I'm developing a sync adapter.
I found this: http://groups.google.com/group/android-developers/msg/85f9304dfcc4e284
In that forum a google employee states:
In releases of Android from Eclair ...
0
votes
1answer
533 views
How do I display a contact's photo from the contact's id?
This code (within my CustomAdapter class) displays only the contact id based on the who sent me text messages and puts them into an ArrayList, then displays the list.
I have a ImageView called ...
8
votes
4answers
2k views
Issues in fetching address book to fetch Gmail, Yahoo, Hotmail, Twitter and Facebook contact list in Ruby on Rails [closed]
Came across the Contacts plugin while searching.
But as per the usage, described in the readme file. It requires username and password to fetch contacts. But that's not a good approach.
5
votes
1answer
3k views
Get Contacts mobile number only
There have been several questions on SO regarding getting Contacts numbers using the Contacts API but I'd like to know if there is a way to identify that the number retrieved is a mobile number.
The ...
4
votes
2answers
1k views
need help : google, yahoo, hotmail contacts api
i want to import addressbook contacts from Gmail, Windows Live, and Yahoo just like Facebook.
In facebook, when i click on Windows live importer, a popup comes with a login page of Windows live.
how ...
2
votes
2answers
2k views
Efficient way to load all contacts and all phone numbers (Android 2.0)
Is there a way of getting all the phone numbers for all contacts without doing a separate query for each contact? (using Android 2.0+). It's really slow if you have over 100 contacts (unusable on low ...
2
votes
1answer
2k views
Getting favourites contacts in Android
I am trying to get all contacts in the favourites list of the Android contacts. Currently, I can get all the group ids including the favourite group ID. But it seems that there is no contacts that ...
1
vote
4answers
2k views
Get Postal address from a contact using ContactsContract api on android
I am using ContactsContract api intent for showing all contacts from an activity. This intent returns an id of the contact. I need to get the postal address of this contact.
Here is the code which i ...
9
votes
1answer
3k views
How can I choose a phone number with Android's contacts dialog
I'm using the old Contacts API to choose a contact with a phone number. I want to use the newer ContactsContracts API. I want...
...a dialog shown with all contacts that have phone numbers.
...the ...
8
votes
1answer
2k views
How to add a contact with first name and last name via intent
I am trying to launch the android native "add or edit contact" activity with some data already in the form. This is the code I am using currently:
Intent intent = new ...
5
votes
3answers
1k views
Cannot find Facebook contacts in RawContacts
I'm trying to build a contacts-managing application. On my phone I have contacts from a couple of accounts including Facebook and HTC Facebook. For some reason I cannot retrieve these contacts from ...
11
votes
2answers
2k views
Getting merged/unified entries from ABAddressBook
I'm developing an application that is showing the iPhone contacts.
The ABAddressBookRef returns duplicate entries for a contact that appears only once in the iPhone contacts application.
Looking on ...
3
votes
2answers
2k views
add photo to an android contact
I am trying to add a contact to the phone address book, I have been successful, I added a new contact and assigned a mobile number to it.
now I need add a JPG I have in my resources directory to the ...
3
votes
3answers
356 views
SQL Server: how to select First, Second and Third degree contacts
I'm working on a social web-site project and I need to list "First, Second and Third Degree Contacts" of my contacts. I'm using SQL Server AND C#
Assume a contact table like this:
For first degree ...
3
votes
6answers
10k views
How to retrieve Contact name and phone number in Android
I'm new to android development, I'm trying to retrieve contact list with there name and phone numbers. I try following code :
// Get a cursor over every contact.
Cursor cursor = ...
2
votes
2answers
1k views
How to add a contact from within an app?
I am looking to keep track of people in my iPhone app - either adding them from existing contact data, or prompting the user to enter a new contact which will be saved to their Contacts.
I know I can ...
1
vote
4answers
2k views
Android getting contacts photo from data.Email query
I am making a autocomplete Field that queries contacts by Display name and Email. When someone clicks on the desired contact after the filtering that contact is added to a list with his email, display ...
1
vote
1answer
3k views
Android 2.0 contact groups manipulation
I would manipulate the contact groups in Android 2.O. My code is following:
To get a list of group (with id and title):
final String[] GROUP_PROJECTION = new String[] { ContactsContract.Groups._ID, ...
0
votes
2answers
248 views
Android - cant get phone number of some contacts
I'm having a problem with extracting phone numbers of some people in my contact list.
First I show all the contacts in a listview:
String[] projection = new String[] {
...
0
votes
1answer
1k views
Android change contact picture
I'm building an app where when a image is clicked the user sees the contacts list and picks one. After clicking on it, it's contact picture should change to the image clicked in the first place.
...
5
votes
1answer
622 views
Add contact to users contaclist in aWindows 8 Metro App
I'm creating a Windows 8 Metro App with c#
In the app you can search persons in a phonebook.
Is there a possibility to add a found contact to the users contact-list?
I know you can browse the ...
4
votes
2answers
984 views
Deleting (Raw) Contacts in Android 2.x
I am working on Unit Tests for my Android app, and am doing a lot with Contacts. I have to insert contacts into the Android Content Providers, and delete them after running my tests. Trouble is, they ...
2
votes
2answers
5k views
Android Intent Filters for VIEW/EDIT/INSERT Contact
I've been trying to find one or all of the right filters. Does anyone have them? Down at the bottom you can see the logging output of the intents. Perhaps they aren't public?
Have tried the ...




