1
vote
0answers
40 views

Always get phone number instead of Email address

I'm trying to query the name, phone number and email address from contacts but getting unpredictable results always. I'm using the following code: protected void onActivityResult(int requestCode, ...
0
votes
1answer
233 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 ...
0
votes
0answers
34 views

Android - get list of contacts that doesn't have email

I am trying to do something like this: select display_name,email from contacts where email = null; But due to the structure of Data, RawContact, and Contact, it's difficult to do so. Any help? ...
0
votes
0answers
206 views

Get Contact Photo from Phone Number?

I follow this code to get contact name from contact number : public String getContactName(final String phoneNumber) { Uri uri; String[] projection; uri = ...
0
votes
0answers
284 views

How to get contact name for sms conversations?

I'm retrieving list of last sms/mms conversations using following query: String[] columns={"type", "address", "date", "body", "conversation_id"}; Cursor ...
1
vote
0answers
157 views

Get The Company name from the contact using specify contact id in android

hi i need to fetch the company name from a specific contact using the contact id .I have the code to get the entire contact id of the all contact details.I search the web to get the details of ...
2
votes
2answers
955 views

Getting name and email from contact list is very slow

I'm implementing an AutoCompleteTextView and I need Name and E-Mail of all my contacts. I found this snippet that I'm running asynchronously but it's very slow. ContentResolver cr = ...
0
votes
0answers
66 views

How to select contacts which only has name?

in my project I need to calculate the size of contacts which just has name(there's no phone number, email or anything in them, just name), can someone help me? Cause I don't have any idea about it, ...
0
votes
0answers
217 views

Android Photo Contact

I have this piece of code to get Contactsphoto from Social Net, but it doesn't work and I don't Know why. Fisrt I had an issue with the cursor.moveToNext() and it always returns me false and now I ...
0
votes
2answers
1k views

Effective way to get contacts info with photo

I want to get some basic info of all contacts(I use api lvl 8). Currently i use this code snippet private List<ContactInfo> readContacts() { ContentResolver cr = getContentResolver(); ...
0
votes
2answers
413 views

Getting contact email by name

I've been trying to get email for contact by its name, but stuck with some difficultes. here is how I am trying to do this: Cursor emailCur = cr.query( ...
0
votes
2answers
131 views

Get contact name from just the number

Say i have an edit text and a button. In the edit text you would type a number and then when you hit the button it will either show the contact information or return with the name of that contact. I ...
0
votes
2answers
868 views

Get all phone numbers of a contact having a lookupUri

I can't get a working Cursor containing all contact's phone numbers: I obtain lookupUri using this method: public static Uri getLookupUri (ContentResolver mContentResolver, String number) { Uri ...
0
votes
1answer
281 views

Getting random contact numbers in Android

I'm trying to use the following code to grab a random mobile phone number from the contacts: ContentResolver cr = getContentResolver(); Cursor cursor = ...
0
votes
3answers
369 views

Android Contacts Can't retrieve data

Android Contacts is driving me mad! This code is returning empty cursors, but the contacts exists! Can anyone see what I can't? ContentResolver cr = getContentResolver(); String ...
0
votes
3answers
3k views

Get Contact by Phone number on Android

I know how I can get all contacts in Android , and how to get their phone number. What I cant seem to figure out is how to get a contact by phone number... This is my current piece of code I wrote ...
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, ...
12
votes
1answer
12k views

android.database.CursorIndexOutOfBoundsException: Index -1 requested, with a size of 2

below is my codes and I got the android.database.CursorIndexOutOfBoundsException: Index -1 requested, with a size of 2 error. Can anyone tell me how to solve it? Thanks! ContentResolver cr = ...
4
votes
1answer
3k views

How to Delete phone number from contact in android?

I want to delete (e.g. mobile number) from android database. For that I am passing query as follow public class ContactDemo extends Activity { /** Called when the activity is first created. */ ...
0
votes
1answer
230 views

Android; I only have 2 contacts, yet I can obtain 5 from a query, why?

I have setup 2 test contacts in my emulator. I'm running the following query, it should pick them both out, populate my domain object, and add to a list. The output at the bottom should therefore be ...
-1
votes
1answer
1k views

How to get list of email addresses from Contacts for autocomplete field in Android?

I've read through the docs and searched on here, but I'm not quite understanding how all the pieces fit together. Was wondering if anyone has a clear explanation of how to grab a single column of data ...
0
votes
2answers
448 views

Finding name of Android contact from number

In my app, I get the name of the person calling from the contacts database and read it out. A user contacted me about a number in the format 123-456-7890 which doesn't work. I've tested this myself ...