Content related to Android's Contacts APIs

learn more… | top users | synonyms

0
votes
0answers
12 views

How to get contact change notification with contacts details

I want to get notified contact change with contact details. Through ContactObserver , I can get notifications when ever contacts are getting changed Or updated. But my intention is to get the exact ...
-3
votes
1answer
18 views

Display Contact,Logs and Favourite Contact in Listview in Single Activity [closed]

I want to create the Contact Activity which contains Three tabs 1) Contact Address 2) Contact Logs (Recently used) 3) favourite Contact ( Often Used) Please tell me how to achieve this tabs ...
0
votes
0answers
19 views

Get full image of a contact instead of cropped image android

Android 2.3.3 Is there a way, where I can get the path of "original image (image saved in the gallery or where ever)" of a contact, instead of the cropped image(image cropped to display for a ...
0
votes
1answer
43 views

Update contact with multiple phone numbers

I have this code public void updateContact (String contactId, String newNumber) {ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>(); String ...
0
votes
0answers
19 views

Write all contact of a user to another user's Contact : Nexus Multiuser Functioanlity

I need to copy all contacts of a user to another newly created user's Contact, at USER_ADDED action. I am trying to share Contacts application, but its not possible. SO I thought it would be a good ...
2
votes
3answers
33 views

using cursor to get contacts throw sqlite exception

I get the following sqlite exception while querying for contact phone: 05-05 04:25:47.276: E/AndroidRuntime(7369): android.database.sqlite.SQLiteException: near "s": syntax error: , while compiling: ...
1
vote
0answers
22 views

Contact Picker in PreferenceFragment (failure delivering result error)

I'm using PreferenceFragment for my settings page where I have one preference that onclick will open up contact to choose and return the result. However, it has a failure delivering result error. ...
1
vote
2answers
44 views

How to show the dialog of all the messaging options in android?

I am trying to send text messages to the selected contacts on the phone using the SmsManager but by default it sends the message using the phone GSM message option. My requirement is to show the ...
0
votes
0answers
15 views

Invoke native contact picker with filters

Can you invoke the native contact picker, but only return contacts whose phone numbers start with (one or more) prefixes? Trying this just returns everything on my phone: Uri uri = ...
0
votes
1answer
22 views

Android Contact Picking Uri

I have a string content//com.android.contacts/contacts/contacts/2 ie aft the user has selected a particular number. From this string, how do i get the phone number of this particular contact? I am ...
0
votes
0answers
25 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
0answers
19 views

Duplicate entries when fetching contacts groups Android 4+

I am fetching all the contact groups using the following query: //get list of contact groups from ContactsContract Cursor groups_cursor = getContentResolver()// ...
0
votes
1answer
26 views

Query contacts details skipping synched contacts by other applications

I am doing a query to retrieve contacts details (specifically their postal address) via ContactsContract. The point is that I would like to skip the contacts that are synchronized from other ...
0
votes
1answer
27 views

Android : how to pass multiple numbers to create contact page

one of function of my app is put an exist user account to contact book Intent intent = new Intent(Intent.ACTION_INSERT); intent.setType(ContactsContract.Contacts.CONTENT_TYPE); ...
0
votes
1answer
37 views

Getting all contacts add adding to ArrayAdapter to bind to AutoCompleteEditText

I am working an android project and I am trying to make use of the the AutoCompleteEditText and bind the ArrayAdapter of the contacts. But I am having an issue returning an array of contacts. Below ...
0
votes
1answer
29 views

Fire intent to contact app then return to own app

I have created an app that fires an intent to create a contact, this lets you choose whatever apps that has the necessary intent filters to create the contact. However, I want to have whichever app ...
0
votes
0answers
45 views

Open Contact Picker with a Filter

It is easy to open the Android Contact App to show all contacts and pick one of them: in Activity: private int PICK_CONTACT = 853456; // ... // open contact list void ...
0
votes
0answers
49 views

Get the SIM number used on a call through the call log of Android

I know Android SDK is big mess for dual SIM support, but stock dialer shows this information on call log which SIM card ( 1 or 2) was used in a call. I guess it´s stored on call log default database ...
6
votes
7answers
268 views

Android - Contact from number with Country Code

When retrieving a mobile number from an incoming sms it has the country code appended to it. Now as the matching contact in the database may not include the country code to get the contact name I'm ...
0
votes
0answers
22 views

Android :Query for any matching numbers?

I am developing an application in which i am using Autocomplete TextBox for adding contacts but my problem is its starts to match from beginning. If i enter 98 then all matching contacts which ...
0
votes
0answers
26 views

Map contact name to number

I need to search for contacts by the digits that represents them in the phone keypad. For example: The name 'George' will be mapped to 436743 and 'Danny' -> 32669. It is very easy and simple to map ...
5
votes
1answer
81 views

Using LoaderCallbacks without Fragment

I am doing some hands-on reading on AsyncTaskLoader so I can use the technique to load the contact list. The only time the code works is when I implement the callbacks from a class that extends ...
0
votes
1answer
25 views

android phone number returned as data1

I am trying to use the following code to read a phone number. But it ever returns the number as data1. How do I fix this to get the actual number? minorCursor = ...
-3
votes
0answers
17 views

Adding more fields in create contact activity [closed]

I'm trying to do this job but still not found the solution There're some information and I want to create a new contact from that information. I start a create contact activity with some fields ...
0
votes
1answer
29 views

Save Modified Phone Number to ContactList at respective index Android

I successfully retrieved the position and phone number from my contact list. Now i need to save this number in my ContactList by modifying the orignal number. I am blocked at this step. please give me ...
0
votes
0answers
34 views

Call onActivityResult for contact in OnCreate() Android

I got this code from another question but i don't know how to call this onActivityResult() class in my onCreate() activity to display the first contact on from my phone and also what is ...
1
vote
0answers
22 views

Modify first phone number and saved it android

I want to retrieve the first phone number using the code below, add a zero in front of that number and saved the phone number. I am new to this and up to now and the code below open the contact list, ...
4
votes
2answers
48 views

Android Fetch Contacts into the Application

I am trying to show a list of Contacts from the users phone in a List view inside the application. I am able to fetch the contacts but some of the Contacts will have mutiple cellphone numbers so i ...
0
votes
0answers
25 views

Modify first ContactList Phone Number on Button Click

I am trying to modify the phone number of the first contact in my contactList by adding a 0 in front of the number. However on button clicked nothing get displayed. I am trying to retrieve the first ...
0
votes
1answer
43 views

How to bring contacts up to send a text

I have an application that defines a word and then sends the definition via SMS. The problem is that the user has to type in a phone number. I was thinking that perhaps the app should bring up the ...
0
votes
0answers
27 views

How to monitor the contact insert or delete operation performed by another app in android?

I am new in android development. I just wanted to develop and application which will be monitoring the insert and delete contact operation performed by another application. Is there any event or ...
0
votes
1answer
64 views

extracting selected contacts from android phone

I'm developing an app where in I need to display all the contacts to the user. The user should be given an option to select multiple contacts and when he presses done, all of it must be stored in the ...
0
votes
1answer
157 views

How to read contents of “contacts2.db” file from the phone pro-grammatically?

Is it possible to read the database files in Android 2.1 ? For example, files in /data/data/com.android.providers.contacts/databases/ contacts2.db. If yes, how? And is it possible to replace this file ...
0
votes
0answers
18 views

Avoid manual contacts aggregation between my application and the Android contacts application

I'm looking for a way to avoid the manual contacts aggregation. Let me show you what I want to do with a simple example. My application is well-synced with the Android Contacts application so the ...
0
votes
1answer
36 views

can't store fetched contacts from phone book android its got cleared after application closed

In my application i want to store contacts as a safe list in android application . for storing purpose i want to fetch contacts from phone book. I have done with get contact number but i cant store it ...
0
votes
1answer
42 views

Erroneous contact data retrieved from android contactlist - How to correct?

I am experiencing some unusual behaviour from my app - I cannot fathom why, but when a user selects a contact from my listview, the contact which is later retrieved from the handset is somehow not the ...
0
votes
1answer
64 views

How to know which contact is selected in listview with their relationship ? See Image

I loaded all contacts in my custom listview adapter with three checkboxes. Each checkboxes related to relationship between selected contact and user. It may be Family, Friends and Co-Worker or any two ...
3
votes
1answer
78 views

Contact Image -Less resolution in android

I have retrieved the android phone contact image and stored it in arraylist like the below. id = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts._ID)); String photoWhere = ...
0
votes
0answers
55 views

Add contacts to group… wrong contact added

I'm trying to add a contact to a group but the wrong contact is added and I can't find the bug. I'm picking my contact using the contact picker from my onOptionsItemSelected method. case ...
2
votes
0answers
53 views

How to add android phone contact to groups according to group_id

I am working on a contact list project and so far i can want to add contacts that are already in phone to group according to group id. i have find group id from the following code. final String[] ...
0
votes
0answers
83 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 ...
0
votes
1answer
65 views

Getting Photo of a contact

Android 2.3.3 I have found the following code at one of the examples... String image = cur.getString(cur.getColumnIndex(ContactsContract.CommonDataKinds.Phone.PHOTO_URI)); if (image ...
0
votes
0answers
31 views

Get the IM information in android contact

Hi I am using the below method to get contact IM information but I am not getting anything. Cursor length is always 0, while I can get the contacts IM from my default phone app in my mobile. I also ...
0
votes
1answer
53 views

Android contact data fields can edit but not create

I use this code to update a contact's address, but it only works for contacts that have an existing address. If the contact address field is empty, the update() method returns zero and the contact ...
11
votes
2answers
364 views

Understanding architecture of android contacts

Hello I am developing an android app which needs to know when a contact is added/updated/Deleted. So I read several posts for it. So the info which I have collected is We can get notified through ...
0
votes
0answers
53 views

Query on ContactsContract.data for RAW_CONTACT_ID returns 0 rows

I'm trying to get get data from from DATA table for specific RAW_CONTACT_IDs, but all I get are empty query outputs. The logic seems quite simple but I just can't figure out why this happens. Googled ...
2
votes
0answers
19 views

How can I specify a group of contacts that I want to look for in my intent?

I am currently requesting the list of contacts via Intent intent = new Intent(Intent.ACTION_PICK); intent.setType(ContactsContract.CommonDataKinds.Phone.CONTENT_TYPE); ...
0
votes
0answers
31 views

Get Contact Names, Contact_ID's by account name and type

I have account types and account name. I want to get contact name and Contact_ID using a single query. I have tried String where= "((" + Contacts.DISPLAY_NAME + " NOTNULL) AND (" + ...
0
votes
0answers
55 views

Unable to access default contacts picture in my Android app

I am creating a contacts application for android, I have successfully created a list view of the contacts and also retrieved the contact images(for those contacts which has images) and the contacts ...
0
votes
0answers
168 views

Show only device contacts with name, email and phone number (exclude gmail contacts)

I want show the list of device contacts with phone number and email. but that is showing all gmail contacts also. How to filter or show only device contacts. Cursor cursor = ...

1 2 3 4 5 15