Tagged Questions
1
vote
1answer
53 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
81 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 ...
1
vote
0answers
243 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
32 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? ...
1
vote
1answer
138 views
android contacts provider: how to set phone number primary
How to set a contact's phone number to be primary number when adding or updating a contact building a custom contacts provider. The adding and updating of contacts is working fine but I don't know how ...
3
votes
2answers
316 views
how to select unique contacts from android
i want to select unique contacts from android only that contacts which have phone numbers. i am using this code
ContentResolver cr = getContentResolver();
Cursor cur = ...
0
votes
1answer
149 views
Order by not working in android cursor
I had some cursors ti retrieve contacts from Android, all its ok but the problem its i cant make work the "Order by" clause. i tried a lot of things, even using "Upper" and localized collection ...
0
votes
1answer
257 views
Inserting contact with android and querying the result uri returns no entries
Im developing an application which is dealing with the android contacts API. I implemented methods to insert, update and query contacts. So far everything worked (writing and reading contacts).
At ...
1
vote
0answers
147 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 ...
0
votes
1answer
164 views
Get the organisation details from contact in android?
hi i need to get the company name from the contact from the organisation i use this code to get the organisation details
String orgWhere = ContactsContract.Data.CONTACT_ID + " = ? AND " + ...
0
votes
0answers
124 views
Android Contacts Provider - Insert a contact with a specific raw contact id
I'm writing an Android program that allows to backup contacts. If the user deletes some contacts, he shall be able to restore them. Therefore, I want to restore the contacts with their original ...
1
vote
1answer
37 views
Why does PRAGMA always keep the same value after i clean data?
I am testing the onUpgrade method in ContactsProvider.
When i clean the ContactsProvider data from setting->application->contacts storage->clean data, and launch contacts again. The user_version ...
1
vote
1answer
1k views
Getting contact number using content provider in android
I followed this tutorial and got the basics of Content Providers : http://www.vogella.de/articles/AndroidSQLite/article.html
But wanted to know how can i get the contact number that is stored ...
1
vote
1answer
413 views
Getting all contacts timestamp wise
I have been trying to get all contacts of device sorted by the order they were added.
I am using following query:
Uri uri = ContactsContract.CommonDataKinds.Phone.CONTENT_URI;
String[] projection ...
0
votes
2answers
1k views
How to read Phone Number in Android from Contacts?
I have tried number of combinations but its showing error when I am finding Phone Number
Here is my code:
public void readPhoneLookUp(){
Cursor people = ...
1
vote
3answers
456 views
Delete fail or success from ContentProviderResult[]?
When using contentResolver.delete(uri, null, null) then determining success can be done by looking at the return value of how many rows were affected.
However, deleting a contact through ...
1
vote
2answers
1k views
Optimize contentProvider query for retrieve contact names and phones
Currently, I'm using this code in order to get the contact name and the phone number:
ContentResolver contentResolver = getContentResolver();
Cursor people = ...
5
votes
2answers
377 views
Add several contacts in batch
I am perfectly able to add contacts one by one with following code:
ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();
...
4
votes
1answer
2k views
Query, backup, delete, insert Contacts in Android
This question should be a starting point to all of us who want to manipulate contacts in Android.
First things first
As I am aware, since API level 5 the Contacts API has changed, so in order to ...
0
votes
0answers
464 views
AS clause in Android ContentProvider query
I'm attempting to retrieve information about more than one MIME type for a raw contact in the data table of the contacts content provider in a single query to make a cursor I can pass to list views. ...
2
votes
1answer
2k views
Android: ContactsContract query, need more advanced selection string
i'm trying to query the ContactContract ContentProvider and obtain the data that the following algorithm would obtain:
given a phone number (input), return record...:
if(recordNumber has 7 digits) {
...
3
votes
1answer
206 views
ContentObservers are useless
I'd love to be able to understand when a SPECIFIC item in the SMS or Call Log is changed. It's pretty easy to get notified when something changes in the appropriate content provider, but getting to ...
5
votes
1answer
1k views
Can I extend Androids Contacts database?
I was wondering is it possible to extend the Android Contacts database?
From here - http://d.android.com/reference/android/provider/ContactsContract.html
It says:
ContactsContract defines an ...
5
votes
2answers
291 views
Android 1.x Contacts.Extensions for a custom account type?
I'm writing a social networking app that has contacts sync functionality. I have working code (from an example I found here) that inserts contacts on v2.x in a sync adapter.
However, the Motorola ...
5
votes
1answer
3k views
Android Get Group of Contact by ID
I have a contact ID, how do I get the group the contact is assigned to? I am sure it is something to do with the Contacts.Groups class but I cannot figure it out.
Thanks, Isaac