contacts

Is there a contact number or email chooser/picker for a specific contact?

I have the contact and I would like the user to choose from his phones or emails. Is that already provided by some picker or shall I implement my own? ...

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 contacts with a phone number (i.e. not the ones with just e-mail addresses)? Currently my code looks like the following, but this shows all conta...

How to put a Website into ContactsContract

Hi guys! How can i put a URL into the More -> Website part of the contact info? I was trying using this code: Log.v(TAG, "twitter screen: " + screenName); values.put(ContactsContract.CommonDataKinds.Website.TYPE, ContactsContract.CommonDataKinds.Website.TYPE_HOMEPAGE); values.put(ContactsContract.CommonDataKinds.Website.UR...

Program adding contacts on the emulator does not add contacts on the HTC Desire

Hello, I want to write a program to automatically generate the contacts. I also use a special service to add account on emulator. The same account is used on the telephone. Below is my code: ContentValues values = new ContentValues(); values.put(RawContacts.ACCOUNT_TYPE, "localhost"); values.put(RawContacts.ACCOUNT_NAME, "PC Sync"); U...

is it possible to send sms in Android using PhoneGap framework?

Hello Peers, I am Android Developer. Currently I am exploring on PhoneGap capabilities and its features. I have gone through the PhoneGap site. But Is there any possibility (or) workaround to send sms and access phonebook information of Android using PhoneGap framewrok? Thanks in Advace, With Regards, Raghavendra K. ...

How can i get Contact categories in Windows Mobile?

How can i get Contact categories in Windows Mobile? for example Bussiness, Friends, ... ...

Customize the Android contact picker

I'd like to present a Contact picker, but add additional prompting when the picker is opened. On 1.5 the title is simply "Contacts". I was thinking I could add an EXTRA_TITLE to the Intent which opens the picker, but it supposedly only works on ACTION_CHOOSER, not ACTION_PICK. Or do I have to roll my own Contact picker? ...

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 and can't see why it wouldn't work. The full code I'm using is available here, but the relevant part is below: Cursor c = getContentResolve...

android getting contact first name

Hi I am trying to get a contacts first name. I know how to get a contacts full name, but I cannot figure out how obtain just the name. any ideas? Uri lookupUri = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, Uri.encode(number)); String[] mPhoneNumberProjection = { PhoneLookup._ID, PhoneLookup.NUMBER, PhoneLookup.DISPLAY_NAME }; ...

android getting a contacts nickname

Anyone have any luck querying for a contacts nickname given a phone number or contacts name? Thanks http://developer.android.com/reference/android/provider/ContactsContract.CommonDataKinds.Nickname.html ...

With the android editText control is there a simple way to display only numbers?

I have a simple app that allows the user to push a button that brings up the list of contacts. They select the contact and the application then puts the phone number into an edit text control. This all works like a charm. However, I notice that the phone number that is retrieved has 'punctuation' marks in it: 123.456.7890 or 123-456...

ABContact setImage, thumbnail problem?

I have setup addressbook contact's images using a code, it works well and the image is there when I browse the Addressbook, But when a call comes, it only shows a thumbnail? I want to show the full image instead the thumbnail? Is it a bug? NSData *dataRef = UIImageJPEGRepresentation(entry.recIcon,1.0); CFDataRef cf...

Looking up a contact by a phone number

Hello, I am getting contact details for a given phone number using the following code: Uri uri = Uri.withAppendedPath(PhoneLookup.CONTENT_FILTER_URI, Uri.encode(phoneNum)); Cursor cursor = context.getContentResolver().query(uri,null,null,null,null); There is a case though when the cursor contains 3 records with the same phone number ...

android get contact's name and phonenumber for android 1.5

So far I have this code from examples I have seen on here: public class testLayout extends Activity { final int PICK_CONTACT = 0; ImageView image = null; /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main);...

Null pointer exception when trying to check for a valid contact with a phone number

This part of my code checks to see that when the user clicks on a contact, the contact actually has a phone number, otherwise a message is displayed and nothing else is done. I am confused as to where my null pointer exception is coming from.... Uri contactData = data.getData(); Cursor c = managedQuery(contactData, null, null, nu...

Retriving mail from contacs crashes if there is no mail set in iphone

Hello I am trying to retrieve email from the contacts .I am able to retrieve it successfully ,but if there are no email set for a person and if i try to retrieve their contact then the app crashes. I want to check whether the mail is there or not for particular contact and display an alert if there is no mail set for the contact.How can...

Custom contacts selection in iPhone like in SMS/Email apps

I am creating an app that allows users to select a list of friends from their contacts list. I can open up the ABPeoplePickerNavigationController, but how can I make the chosen contacts to display like in the image below (the Rosa Golijan part): Basically, a list of light-blue rounded rect buttons, and you can easily delete one if nee...

I want to insert new contact into android contacts, that the account is not set.

the account is not set , how to insert a new contact, and after inserted , the contact can be shown in the conatcts' application? ...

Android Programming...How do I load contact photos so I can use them in an app?

I am trying to simply load just the contact photo of all my contacts and display them in a gallery.widget...Do I create a query? I was trying simply just to do People.loadcontactphoto but was getting errors....Any easy way to do this? ...

Android Contact Search w/ multiple parameters

I am trying to do a Contacts search on Android using ContactsContract. I would like to search on multiple parameters, e.g. - Where name = myname AND email = myemail AND nickname = mynickname, etc. I have it working w/ just name, but need the syntax to add email and nickname as search params. I know they are stored separately from disp...