Tagged Questions
The contacts tag has no wiki summary.
40
votes
7answers
78k views
How to call Android contacts list?
I'm making an Android app, and need to call the phone's contact list. I need to call the contacts list function, pick a contact, then return to my app with the contact's name. Here's the code I got on ...
36
votes
7answers
34k views
How to read contacts on Android 2.0
I'm working on Android 2.0 and am trying to receive a list of all contacts.
Since android.provider.Contacts.People is deprecated, I have to use android.provider.ContactsContract, But I can't find a ...
31
votes
7answers
6k views
How does Django Know the Order to Render Form Fields?
If I have a Django form such as:
class ContactForm(forms.Form):
subject = forms.CharField(max_length=100)
message = forms.CharField()
sender = forms.EmailField()
And I call the ...
10
votes
3answers
4k views
How to access contacts list in Windows Phone 7?
How do you access the contacts store (the contact list) within Windows Phone 7?
Thanks!
update: It seems that this might be available in the next version of WP7, Mango:
...
8
votes
3answers
523 views
Whats the best plugin to fetch Gmail, Yahoo, Hotmail, Twitter and Facebook contact list in Ruby on Rails
Came across the Contacts plugin while searching.
But as per the usage, described in the readme file. It requires username and password to fetch contacts. But that's not a good approach.
PS: I am ...
8
votes
1answer
10k views
get contact info from android contact picker
hi im trying to call the contact picker, get the persons name, phone and e-mail into strings and send them to another activity using an intent. So far this works
Intent intent = new ...
7
votes
3answers
289 views
How to create a contact programmatically
public boolean createContact(String name, String number, String email)
{
boolean success = true;
try
{
ContentValues contentValues = new ContentValues();
...
7
votes
2answers
598 views
Can we access the emailids from the contactlist from iPhone?
Can we access all the email IDs for each contact from the iPhone contactlist through code?
7
votes
1answer
4k views
Round button in Android
I want to create a circular button having a plus and minus sign on to this and exactly used in Android
Contacts application like shown in the image as below:
7
votes
3answers
3k views
iPhone SDK - UITextField with + Button for Contacts
In some applications like Mail, when you have a UITextField, there is a little + button to the right. When you tap it, a modal view controller comes up which you can select a phone number, address, ...
7
votes
5answers
7k views
Taking contact list from hotmail gmail yahoo in java?
most of social networks does this. when you register one of them for example twitter it says why dont you invite your friends from hotmail or yahoo or gmail. and expect us to give our credentials and ...
6
votes
1answer
207 views
How can I choose a phone number with Android's contacts dialog
I'm using the old Contacts API to choose a contact with a phone number. I want to use the newer ContactsContracts API. I want...
...a dialog shown with all contacts that have phone numbers.
...the ...
6
votes
5answers
3k views
Get contacts photo which are synced with facebook for android
I am trying to show contact pictures in my application but I am getting pictures of those who were added manually only and not those which are synced with facebook. How to work around this? Here is my ...
5
votes
1answer
494 views
How to add a contact with first name and last name via intent
I am trying to launch the android native "add or edit contact" activity with some data already in the form. This is the code I am using currently:
Intent intent = new ...
5
votes
2answers
177 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>();
...
5
votes
1answer
185 views
Get a Users Contacts Email & Phone addresses using Windows Live Messenger Connect SDK v.5
Has anyone successfully used the Windows Live Messenger SDK v. 4.1 or 5 to retrieve the email addresses and/or phone numbers of a users contacts?
The best I have been able to do is the get profiles ...
5
votes
1answer
894 views
Can you determine what contact changes w/ registerContentObserver?
Just trying to determine if there is an easy way to determine what contact changes when using registerContentObserver, or some other method? I can tell when the database changes, but not sure I want ...
5
votes
1answer
595 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
174 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 on here) that inserts contacts on v2.x in a sync adapter.
However, the ...
5
votes
3answers
4k views
Send SMS through PhoneGap on Android
I am exploring capabilities and features of PhoneGap. I have gone through the PhoneGap site. Is there any possibility (or) workaround to send text messages and access phonebook information of Android ...
5
votes
2answers
2k views
Android contact picking - only contacts with numbers?
I'm writing an application that requires the user to choose a contact from the contact list in order to send an SMS to that contact. Is there any way I can query the contact list for just those ...
5
votes
2answers
460 views
Is there a simple way to check if an incoming caller is a contact in Android?
When an Android phone receives a call it automatically checks if the call exists in its own contact database. I was wondering if there is a simple way to access that information. I have a ...
4
votes
1answer
170 views
Access contacts filters
The contacts on the android phone come with settings like "Filter Contacts" that lets the user set things like "Show only contacts that have phone numbers" and "Only show contacts that are online", ...
4
votes
2answers
578 views
Android pick email intent
I'd like to pick an email from the contacts list.
Picking a contact is not good enough, because a contact can have several emails.
Using the API demo, I managed to pick a contact, phone number and ...
4
votes
1answer
439 views
Ruby on Rails grabbing Yahoo contacts on “Contacts” gem
I installed "contacts" gem on my local machine, wrote some code to get yahoo, gmail and hotmail contacts, and it was running smoothly. I moved the code to a server for testing, my gmail and hotmail ...
4
votes
1answer
639 views
TableView like the Contacts app in the iPhone
Hey! I'm working on a contacts app. And I want to have the same type of Tableview with the add button. So when the user adds a new contact it will open a new view which will have the standard buttons ...
4
votes
2answers
691 views
Android Contacts RAW_CONTACT_ID vs CONTACT_ID
I am using a contact picker as follows:
Intent contactPickerIntent = new Intent(Intent.ACTION_PICK,
Contacts.CONTENT_URI);
startActivityForResult(contactPickerIntent, ...
4
votes
1answer
143 views
How to launch an application from a contact in Android?
I would like to write an application which would be launched from the Contacts list in the phone. That is, you choose a contact using the normal contacts application, and where you can dial to the ...
4
votes
1answer
1k views
iPhone Address book: How to select multiple contacts?
I would like to execute the same operation on multiple contact of the Address Book.
Is there an API available to allow multiple contacts selection from the Address Book ?
If it is not possible ...
4
votes
2answers
2k views
Android - Show list of contacts with same phone number
I have a widget that will open the contacts list by a phone number. I am using *Contacts.Intents.SHOW_OR_CREATE_CONTACT*
I know it's deprecated but I want this to work on android 1.6. I have a phone ...
4
votes
1answer
2k 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
3
votes
1answer
84 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
2answers
190 views
Rooted Android: Suspend and warn user when any App accesses Contacts List, Microphone or Camera?
I have Users with rooted Android 2.2+ smartphone devices.
Whenever any on-device App accesses the device's Contacts List, Microphone or Camera resource, I want to Suspend that App, pop up a warning ...
3
votes
2answers
76 views
How to check if an email address belongs to Gmail
I'm creating a function uses Google's API to import contacts from a person's gmail account. However I'm aware that many businesses sign up to Google in order to have a more professional domain name( ...
3
votes
1answer
170 views
Get Contacts mobile number only
There have been several questions on SO regarding getting Contacts numbers using the Contacts API but I'd like to know if there is a way to identify that the number retrieved is a mobile number.
The ...
3
votes
2answers
462 views
Google Contact API Error: Request via script load timed out. Possible causes: feed URL is incorrect; feed requires authentication
Hi I have an Error on Google Contact JavaScript API. The code was working fine from last day. But its not working today. Don't know what went wrong. :(
Request via script load timed out. Possible ...
3
votes
2answers
520 views
UITableViewCell edit mode like contacts app
I'm currently working on an app where a user has to edit his/her profile. I would like to use the edit mode like in the contacts app. (Labels become Textfields)
Is there an easy way to achieve this? ...
3
votes
3answers
413 views
Cannot find Facebook contacts in RawContacts
I'm trying to build a contacts-managing application. On my phone I have contacts from a couple of accounts including Facebook and HTC Facebook. For some reason I cannot retrieve these contacts from ...
3
votes
3answers
217 views
SQL Server: how to select First, Second and Third degree contacts
I'm working on a social web-site project and I need to list "First, Second and Third Degree Contacts" of my contacts. I'm using SQL Server AND C#
Assume a contact table like this:
For first degree ...
3
votes
2answers
300 views
Stick Android ListView “categories” to top
Im working on an application where I load items from a webservice and display them in a list using ListView. I was wondering if I could have certain "titles" between some of them, and when you scroll ...
3
votes
1answer
259 views
Android How do you detect which Contact changed?
Is there a way to determine which contact changed?
I know I can register a ContentObserver for the URI but it only triggers when something changes, how am I supposed to know which contact changed and ...
3
votes
1answer
275 views
How to set My Application instead of default android contacts's Application
when I click on contact icon in menu list then open my application instead of in built andriod.
just tell me what i do in menifest...
Plz help me n thanks in advance.
Plz give me your gold time for ...
3
votes
2answers
349 views
How do you get the members of a contact group?
I have the ID of a contact group, and I'd like to list its members. Here's the code I'm trying:
String[] projection = new String[]{
ContactsContract.CommonDataKinds.GroupMembership.CONTACT_ID
};
...
3
votes
1answer
726 views
What is the difference in contacts versus raw-contacts?
I have a "dump" utility that I am using to study the ContactsContract since I don't quite get it in the documentation. When I dump the contacts it counts 263 records in the table, however, the ...
3
votes
1answer
114 views
ContentObservers are basically 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 ...
3
votes
3answers
2k views
What is the default Account Type / Name for contacts on Android Contact Application?
I would like to read contacts from ContactsContract API which belongs only to Phone / SIM and would like to avoid contacts synced from other apps like facebook and gmail. I tested my code on simulator ...
3
votes
2answers
976 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
1answer
830 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. */
...
3
votes
2answers
2k views
Android edittext - choose contact's phone number (with auto completion)
Is there a way to put a EditText element in which i could choose contact's phone number from my contacts list. Just as in generic android sms app. (Auto-complete when typing phone number or contact ...
3
votes
2answers
49 views
Can i build an app that edits the conatct list on the iphone?
Hey everybody,
I want to create an app that handles some sort of recognition of another person in my area, and creates a new contact based on his info. regardless to how it is done, my question is ...