related to accessing contacts(CRUD, operations on contacts like messaging) from contact-list or address book in mails, android, iphone, windows-phone or facebook.

learn more… | top users | synonyms

1
vote
1answer
14 views

CursorLoader/adapter not displaying correct values

I'm attempting to query Nickname and SIP Address from the contacts. The issue I'm running into is that both of them are stored in DATA1 column. So when I run a query, I only retrieve the Nicknames. ...
0
votes
1answer
8 views

Got No Authentication header information error while using Google Contacts API Java

I receive AuthSub token and using that to retrieve all contacts from google. The code snippet try { URL feedUrl = new URL("https://www.google.com/m8/feeds/contacts/default/base?max-results=" + ...
-4
votes
0answers
13 views

Migrating iPhone Contacts [closed]

I just got a new iPhone 5 and I use a MacBook Pro. I have a big list of contacts in Excel that I can structure into a csv or text file format. If I want to get these contacts onto my iPhone in a ...
0
votes
0answers
18 views

getting email from Android phone contacts

Please, I've been trying all day to get the email address of all the contact on a phone but somehow, i can't get it to work. Please can someone tell me where am going wrong.. all others work except ...
0
votes
0answers
14 views

PhoneGap - contacts.create duplicates Contact in iOS

I am building an iOS Phonegap app that has the option to add info to a contacts entry using this JavaScript: function saveContact() { var contact = navigator.contacts.create(); ...
-4
votes
0answers
22 views

Is there an Android contact manager that isn't trolled or otherwise invaded by Google or others? [closed]

I don't like getting unsolicited invitations -- or having emails sent by Google to my Google contacts!
2
votes
0answers
54 views
+50

Intent.ACTION_PICK returns empty cursor for some contacts

I have an app in which one aspect is for a user to select a contact and send a text to that contact thru the app. The app only works with some contacts and fails on others. More precisely: for the ...
0
votes
2answers
31 views

Accessing contact data Android

If I'm assigning a value to a field of a contact, such as nickname; .withValue(Nickname.NAME, "Mr. Incredible") it is stored in the DATA1 column according to ...
0
votes
0answers
24 views

How to retrieve contact numbers and save them?

I am developing an emergency Android application and I don't know how to retrieve contacts (for ex. 4) from the phone's catalogue firstly, and then save the selected in the app. database. Thus, ...
0
votes
0answers
18 views

Android: How are call details compared to saved contacts

I am creating an app for which I need to know the Algorithm that is used to compare Call Details with the Contacts that are saved in any phone. For example: If the phone number of an incoming call is ...
0
votes
0answers
10 views

Get number from call log when contact is created

I have created a alternative app for creating a new contact in android. It works fine when we create a contact. But when we create a contact from call log selecting "create contact" in context menu, ...
0
votes
1answer
39 views

Retrieve Contact name from phone number

I've been looking everywhere since the past few days to find a way to retrieve a contact name using a phone number I already have stored in a variable, unfortunately everything I found so far seems to ...
0
votes
0answers
32 views

Adding contact to WP8 with Facebook/Twitter infos

Let's say that I have some infos about someone and I want to add them to my contacts using my app. The infos may be: Name Surname Email Facebook Name (and/or Facebook user ID) Twitter Name Now, ...
0
votes
0answers
38 views

Read/Copy iphone contacts from PC using C#

Can anybody guide me How to read contacts from iphone from PC using C# application. Recently, I had used Mobiledevice.dll from http://mobiledevice.codeplex.com/. You can retrieve its model, serial ...
0
votes
0answers
40 views

Trigger the native contacts ui in phonegap [ios]

I've been looking through the documentation for the Contacts API and there are ways to retrieve and save contacts to display them on your own UI. But is there any way to trigger the native contacts ...
-1
votes
0answers
26 views

Update contacts in phonebook application according to most call contacts

i'm new to android and i almost done with programming the phonebook with add, edit and delete functions. Now i'm trying to arrange and update the contacts according to the most call contacts, if ...
0
votes
1answer
36 views

Store Image and get images

I'm going to make vcard which also can save image picture. can anyone help me?? I already read the documentation at ...
0
votes
0answers
40 views

set image as the contact icon in Android app

Right now I'm working on android version of the app, that is simply working with contacts on the telephone and going to download the image from the server and set it as the persons icon in contacts. I ...
0
votes
0answers
22 views

View the contact's picture in android eclipse

I'm trying to view the contact's picture on my view but i cannot understand any answer i find because i am not at all familiar with the uri or bitmap; what i have been using is a Cursor to get what i ...
0
votes
1answer
43 views

Clicking on cancel button not returning to my ios app

Can anyone please help me out ,iam fetching contacts from gmail using Oauthx to my ios app. After entering the credentials to gmail iam getting all the contacts till here its fine , but for ...
0
votes
0answers
20 views

Parsing URIs for Android Database Queries

I am trying to query Android contact information and I so I want to query just the information associated with a single contact for a function I'm writing. Formerly I was using ...
0
votes
1answer
92 views

java.lang.IllegalStateException: Couldn't read row x col x from CursorWindow.Make sure the Cursor is initialized correctly.contacts

I´ve developed an application, which goes through all contacts on android. It´s already published and currently installed on about ~800 devices. It is running on almost all devices without any ...
1
vote
1answer
51 views

Get name of contact by nickname in Android

I have some problem with Contact Provider. I have a nickname, which stored in string variable text. I want to get name and surname of user, which have some nickname. But it's something wrong with my ...
0
votes
0answers
28 views

How to change contacts thumbnail using ContentResolver… Im totally stuck

I've been trying for days now to crack this... I simply cant understand how to change or update a contact's thumbnail image. I am working on an app that has a GridView with all contacts in the ...
0
votes
0answers
58 views

I am trying to load contacts in my phone.. the code works fine in emulator but crashes in phone

package in.wptrafficanalzer.listviewcontacts; import java.io.File; import java.io.FileOutputStream; import android.app.Activity; import android.database.Cursor; import ...
-1
votes
1answer
53 views

how to retrieve iphone contacts to my windows form application c#?

i want to be a program for receive iphone contacts (for windows application not ios) and add new contact and delete contact like as iTools for windows. backup and restore, delete all etc. which ...
1
vote
1answer
57 views

Get user/owner profile contact URI and user image with API 8 onwards

From API 14 (Android 4.0 onwards) onwards I can use ContactsContract.Profile.CONTENT_URI to get the phone owner's contact profile Uri, and through that obtain their avatar/contact photo. I want to ...
2
votes
0answers
46 views

how to retrieve the list of contacts in android

my purpose to retrieve the list of contacts (name, number) is recorded in a json object, to send via web service to the server then I found the code to visit contacts, and it is good, I test this ...
0
votes
0answers
50 views

how to detect a deletion, update, add a contact database

I can create an android service allows to send a message from web servcie when there is a change, addition, deletion in the contacts database I found this code but i do not how to use if ...
0
votes
0answers
30 views

EWS get Contacts - CustomerID & Account

ExchangeService service = this.GetService(); FolderId folderID = GetPublicFolderID(service, "My Address Book"); ContactsFolder folder = ContactsFolder.Bind(service, folderID); int folderCount = ...
0
votes
2answers
30 views

How to retrieve the number of new contacts added to the contacts database

is there a column in the database of contacts indicates the date added to the base or the last modification date, because I want a method used to retrieve the new add I found SEVERAL method but I did ...
0
votes
0answers
46 views

how to detect and save new contacts add contacts database

how to detect and save new contacts add contacts database I do a search to find what are the possible way to do that I find this example: good example link this ...
0
votes
0answers
37 views

how to detect new contacts added to the contact database

how to detect new contacts added to the contact database I find a lot of code on the INTERNET but do not work or contain errors..... is there an idea not a code to detect new contacts add I know my ...
0
votes
0answers
35 views

Google Contact API Photo Upload

I am using Google Contacts API 3.0/2.0 to upload images to our Google Apps domain. No authentication errors. Used both ClientLogin and Oauth ...
0
votes
1answer
20 views

iCloud ios mail contacts

I want to develop an iOS App, which can access my iCloud mail contacts. Can I do that, does Apple allow such coding? Or are there some private APIs maybe? Thanks in advance
0
votes
0answers
34 views

How to call the Contacts application whith filter (starts with “h”)

How to call the Android Contacts application to show contacts starts with "h" Intent i = new Intent(); i.setComponent(new ComponentName("com.android.contacts", ...
0
votes
1answer
60 views

How to retrieve users by PhoneNumber in Quickblox in iOS? [closed]

I am involved in a chat application and I have to retrieve users from QuickBlox by phone number in iOS Can anyone help me out Please, Your help would be Highly Appreciated.
0
votes
0answers
41 views

ContactStore InvalidCastException on SaveAsync

I'm trying to save a contact to the Windows Phone (8) Contact Store. My code doesn't do anything non-standard: private async Task SaveContactToLocalStore(IMyLocalContact myLocalContact) { var ...
0
votes
1answer
156 views

SQLiteException Unable to convert BLOB to string when contact have photo. Android

In my code I update contact information including name, address, email, and photo. When contact have no photo all OK. But after assigning a photo for the contact I get ...
0
votes
1answer
74 views

get yahoo contacts in android using oAuth

this is my code to get yahoo contacts in android . i m able to get upto access token but while making GET request for contacts im getting signature invalid error. i searched a lot but i couldnt ...
0
votes
1answer
90 views

Android Application run perfectly on emulator but crash on my own mobile

i made an Android Application who create a list with the email of all contacts and when you click on a contact send the email to him. The problem is that when the app has to receive the list of ...
0
votes
0answers
79 views

Can't update or add new contact photo Android

I can't understand why it works on emulator but not on real device. Please help!!! Here I'm getting contact id by phone number ContentResolver crFull = context.getContentResolver(); Uri ...
2
votes
1answer
37 views

Reading Android Contacts in Flex?

Android is storing his contacts here: data/data/com.android.providers.contacts/databases/contacts.db Anyone have code to access the Android Contacts.db with Adobe Flex? Thanks!
1
vote
3answers
123 views

Livecode mobileAddContact

Has anyone used mobileAddContact on ios and managed to add an address? So far I can add the name, contact details (phone, email etc) but I can't add the address details (Street, City, Zip, etc.). ...
1
vote
0answers
234 views

Get Contact Photo based on Contact PhoneNumber Android - Working Example

Android 2.3.3 I have looked at various examples on how to get "Photo of a Contact". But none of them worked for me. Surprisingly, I have stumbled upon a code at StackOVerFlow and I used it and could ...
0
votes
0answers
26 views

Issue in adding the contacts in iOS

I am building an App using Titanium Appcelerator in which I am creating contacts. The strange thing is that , the contact is created successfully in simulator. But when I try the same code in iPhone ...
3
votes
1answer
153 views

Crash while fetching the contacts from the address book database for the iOS version 6.1.3?

I have developed the application to fetch the contacts from the address book database. For this the implemented code is code fine for the iOS version 6.0, but it crashes on iOS 6.1.3. The code which ...
0
votes
0answers
40 views

Reading contacts and getting duplicate

I'm trying to read all contacts on my phone (right now using the emulator). I use this code: contacts = this.activity.getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, ...
0
votes
0answers
29 views

Contacts list j2me- difference between devices in list when Family name is empty

I developing code that save new contact in contact list. When I Try to add contact without family name, two devices behave in diffrent ways(in list when display default : ginven name,family name): ...
0
votes
0answers
53 views

Android developement: How to get a contact's 'date created'

I am trying to create a simple app that displays the date a particular contact was created. I just need to know the name of the column that holds this field (and any space name that needs to come ...

1 2 3 4 5 26