The android-contacts tag has no wiki summary.
8
votes
1answer
162 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
2answers
567 views
How do I add custom data and fields to the the Contacts screen in Android?
I'm trying to add a custom data field and MIME type to the Contacts screen. Is there a way to do this such that when a user views a contact with my data saved on it, my field appears there? This is ...
7
votes
3answers
380 views
How to create a contact programmatically
public boolean createContact(String name, String number, String email)
{
boolean success = true;
try
{
ContentValues contentValues = new ContentValues();
...
6
votes
1answer
162 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 ...
6
votes
4answers
198 views
How to update existing contact?
I have one existing contact, I need to add a work address to that existing contact. I am using the following code, but it's not working.
String selectPhone = Data.CONTACT_ID + "=? AND " + ...
6
votes
1answer
160 views
How to get the email from contacts and phone numbers from contacts and class doesn,t have extends activity and oncreate() method?
I am getting phone no's ,mails from contacts with out extedsactivity and oncreate method
by using the fallowing code.
\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
Class A extends ...
5
votes
2answers
598 views
Encode contact info (MeCard) on Android using ZXing
I need to create QR code from contact info which is in MeCard format. I need to encode the following field:
Name (N:)
Url (URL:)
Note (NOTE:)
I can correctly create all 3 fields using ZXing QR ...
5
votes
4answers
363 views
Best practice to show android contacts + phone numbers
What is the best approach from a performance perspective to show a ListView with contacts and their phone numbers?
Use CursorAdapter with the contacts cursor and make the phone numbers query when ...
5
votes
3answers
1k views
Can I perform this Android query with ContentResolver.query()? (LEFT JOIN and CASE)
I am looking to perform the following query (in pseudo-code) on Android:
SELECT C.ID, C.NAME, CASE ISNULL(G.GROUPID,0) = 0 THEN 0 ELSE 1 END INGROUP
FROM CONTACTS C
LEFT JOIN GROUPMEMBERSHIP G ON ...
5
votes
1answer
2k views
How to get a contact's facebook id or url from native contacts / content resolver?
How to get the facebook id or url of a contacts that's been synced to the native contacts app via Facebook sync adapter?
I went through different urls, but didn't see any info regarding facebook.
I ...
4
votes
3answers
274 views
Add a custom field to a phone number
Am building an app that requires a custom contact field ('whitelist', if you were wondering) for every phone number.
However, I only found a way of saving custom data for each contact, with ...
4
votes
1answer
413 views
In Android, how do you select only PHONE contacts?
I am querying the Contacts out of the built in Contacts provider URI in Android. I want to get just the PHONE contacts; is there any consistent way to do this? It seems from what I can find that the ...
4
votes
1answer
498 views
Retriving group of particular contact
I want to retrive the contact details along with the group which it belongs to. I got the code to list all the contact groups in the phone.
Cursor groupC = getContentResolver().query(
...
3
votes
3answers
40 views
how to get contact name by sending contact number in android?
if there any method to get contact name by send contact number in android.if any one have idea .
private String getContactName(String string) {
String name=null;
ContentResolver cr ...
3
votes
2answers
53 views
how to add contacts programatically in android?
i done like these.contact are not added
ContentResolver cr = this.getContentResolver();
ContentValues cv = new ContentValues();
...
3
votes
3answers
125 views
use autocomplete textview with contacts phone number
I am having making my edittext field autocomplete for contacts phone numbers. I know how to get contacts from database and display them in text field but i need them to autocomplete just incase the ...
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
0answers
158 views
Get Email ID and name from android inbuilt phone book?
I am trying to get name and email-id from Android inbuilt phone book into my page, I am able to get name, contact ID, phone number. but I am unable to get email ID from the Android phone book.
Code ...
3
votes
1answer
259 views
Android, how to get Facebook/Twitter/etc contact photos
I want to load contact photos for contacts in an app, I know how to do that as there are many tutorials to do that. But these methods(stock android) seems to fail to pull back 3rd party sync'd photos ...
3
votes
2answers
460 views
Export the Contacts as VCF file
I want to export the Phone contacts to External storage area. I didn't work with this type of method. Anyone guide me to do this?
3
votes
1answer
180 views
Android - Get UserData using AccountManager / First and Last name of the phone owner
I want to prepopulate some of the fields in my application to help out user when he is subscribing for the service inside my app.
So how would I get first name and last name of device's owner. I want ...
3
votes
1answer
251 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
2answers
220 views
How to send sms from android app?
I want to add sms sending feature in my app and also want option in which user can select the contacts from the contact list directly from the application. Is there way that contact list can be ...
3
votes
2answers
1k views
How to put contacts on the android emulator?
I'm trying to write my first android app. It deals with contacts and contact groups. In order to test on the emulator, I'm trying to add contacts with groups to the emulator. If I try to add them ...
3
votes
3answers
2k views
Add number to contact on Android 2.0
Im trying to add a phone number to an already existing contact on a Droid-phone. Doing it at the same time as I create a contact is trivial, as the backreference I supply simply is 0 when creating a ...
2
votes
1answer
40 views
How to create Fast Scrolling with front charecter to dispaly on screen when user Drag on List of Alphabet
I am New to android,
I have did the contact list like the Image look like the below,
but the problem is when i click on alphabet list the charterer is not displaying, it is only displaying only ...
2
votes
1answer
35 views
how to filter contacts in Android using a keyword
I am working on an application that returns a list of contacts based on keyword after calling an intent. The Keyword can be anything from name to phone number to address to company name.
I am not ...
2
votes
4answers
190 views
Fetch Contacts in android application
I was following these links to get the contacts in my application
How to call Android contacts list?
http://www.higherpass.com/Android/Tutorials/Working-With-Android-Contacts/
I can display the ...
2
votes
1answer
139 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
1answer
278 views
Android : How to populate a ListView with alphabet indexer and fastscroll as in contacts app.?
I would like to implement a ListView with fastscroll and albhabet indexer as in the contacts application. I'm using a SimpleAdapter to populate the ListView. As seen from the image, by selecting a ...
2
votes
1answer
108 views
How do get the android sdk contact picker to give me just phone results and not all my twitter followers
i get some pretty weird stuff when i try and use this:
Intent intent = new Intent(Intent.ACTION_PICK, ContactsContract.Contacts.CONTENT_URI);
startActivityForResult(intent, PICK_CONTACT);
my ...
2
votes
0answers
138 views
Android Contact Picker
I was wondering:
Is it possible to customize the Android Contact Picker so that it can also allow adding a new contact as a menu option in the default contact list?
At the moment, if I invoke the ...
2
votes
1answer
94 views
Custom Contact data in XML or database for application?
Writing my first Android app. Thought I would start with a Corporate Directory application. The app will only have read access to the data (for searching/displaying).
The data will have to be ...
2
votes
0answers
46 views
Making custom contacts available
I have an app for our business that pulls contact information out of our telephone directory.
Can I make this information available to the Android system so people can use it? E.g. similar in how ...
2
votes
1answer
115 views
android contacts querying return the contact name as a number
Am trying to query the database and display contacts and all their phone numbers, a row for each phone number:
Activity file:
private Cursor getContacts() {
Uri uri = Data.CONTENT_URI;
...
2
votes
3answers
846 views
Android Get Contact Picture from Call Log
It was pretty easy to get the Contact picture when querying the People.CONTENT_URI, with a simple
People.loadContactPhoto(activity, ContentUris.withAppendedId(People.CONTENT_URI, contactId)
...
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
2answers
2k views
android vcard string to contact
i'm wondering if there's a clean way to import a vcard as an android contact. i have a vcard parser, but mapping each possible vcard field and field type is going to be a painful, bug-prone exercise. ...
2
votes
1answer
392 views
Integrate my app with Contact
I would like to integrate my app with contact manager:
More precisely:
When I run Contact app in my phone and then I click on any avatar, a Popup (Quick Contact Badge) windows shows up with some ...
2
votes
2answers
4k views
Android. to display contacts as list view
I want to display contacts in list view and add actions on all contacts , like on click on a particular contact it should display the phone number , mail id and delete of the particular contact...
...
2
votes
1answer
1k views
how many contacts in contact list
How can I tell how many contacts there are in the contact list? I got the contact number, but one person can have more than one contact and I want to account for this in finding the total number of ...
2
votes
1answer
128 views
Add an option when long-pressing a number
Hi
I'd like to add an option when long-pressing a number in the call list. Actually I have:
Dial
Send SMS
Add to contact
Edit before calling
Remove
Is it possible to add an option there? Such ...
1
vote
1answer
35 views
select contact in Android using keyword
I am working on an Android Contact application and I would like to implement contact lookup using one particular keyword.
This keyword can be either the contact name, phone, email, and so on. Is this ...
1
vote
1answer
26 views
Is ContactsContract.Contacts by default empty?
Is ContactsContract.Contacts by default empty? If so, how do I add some test data to it?
Otherwise, I must be doing something wrong/omitting something, as this Activity displays completely empty.
...
1
vote
2answers
63 views
display contact image in image view
I want to get a contacts image and display it in an imageview. I want this to work based on what contact the user chooses. I have a button that has the user press it and get contact phone number and ...
1
vote
1answer
67 views
Get RawContactId of specific Contact based off PhoneLookup
I am looking to get the RAW_CONTACT_ID of a specific Contact using PhoneLookup or even just the Contacts LookupKey.
I know the contacts table has a column name_raw_contact_id that references the ...
1
vote
2answers
77 views
How can I get only some particular or selected contacts from my contact list?
How can I get only some particular or selected (multiple) contacts from my contact list and make a group with those selected contacts?
Intent intent1 = new Intent(Intent.ACTION_PICK, ...
1
vote
1answer
49 views
Are “Contacts” available via the Emulator?
At the point in my code where I attempt to access the Contacts (in the emulator, so yes, there really are no Contacts to access, but I would think that it would "fake it" with some manufactured ones), ...
1
vote
1answer
116 views
Howto show data from Array list to Custom ArrayAdapter
I am working on an application in which i need to fetch all the contacts from the contact book and display. i want the user to select some contacts and add them in a group which is saved in db.
i ...