Android :: Possible To Change Preferred Contact Telephone Number?
Jul 9, 2009I wonder if I can change the preferred contact telehone number from the API (nort manually, of course)

I wonder if I can change the preferred contact telehone number from the API (nort manually, of course)
In my app I want to have the user selecting a telephone number from the contacts list. How do I do that. Selecting a contact is easy. Is there also an easy way to first see the contact list and then see the telephone numbers of that contact and in the end return the telephone number to my app that the user selected.
View 2 Replies View RelatedI just noticed, numbers are in SMS clickable, to call them.This is great for me with my very weak memory. I had with my old phone a big problem to remember a number in a SMS to deal it.I just think about exporting contacts from my database to my phone.A new idea would be to have a javascript application,main problem,
View 3 Replies View RelatedIs there a way to make my phone add the dashes that normally show up when you put in a phone number.I just get a list of numbers with no dashes or no spaces and it is very hard to tell if I mistyped the number.
View 8 Replies View RelatedWhen I send group SMS messages, how can I know which number receives the message. If the contact has more than 1 number (which is generally true) to which number is the SMS sent to? As there's no primary setting for sending messages.
View 1 Replies View RelatedCan anyone advise how to insert a *pause* in a telephone number ?.
I am using some access numbers to dial abroad, and i want to insert the a pause before the telephone number that i am calling, continues ?
a have had a google about, and some other android phones seem to confirm its the comma (,) that inserts a pause.
can anybody confirm this, who may be using this.
I was just wondering if anyone knew how to, or if theres an app to insert a telephone number in a text message. I don't mean that vcard business either.
View 2 Replies View RelatedAnybody has a code snippet where I can get all the numbers (telephone) of a contact? (in android 2.1).
View 2 Replies View RelatedUnder each contact person it gives the chance to enter numerous numbers (i.e. home, mobile, work). then when u go to that person it gives a ton of options. For example if work, home and mobile are all listed it will give the option to call all 3 numbers and send message to all 3 numbers. Obviously I can't send message to work or home numbers. So....my questions is can I somehow delete the options to send message to home and work numbers? That way the the only options listed are: call home, call work, call mobile and message mobile. Also I did it once and forget how...but how can I change which number is the primary one on a person's contact list?
View 1 Replies View RelatedComing from a Treo 700wx that I use thru Active Sync, and connect to my companies exchange server.
My Treo when locked, would only show the time, My name and a telephone number. In the case I lost it, some good samaritan could contact me when they realize the phone was useless with out the PIN.
I cannot find anything similar to this on the Incredible.... Can someone assist me?
I am facing one problem in message view. Bacically what I need to do is in message view I want to mark any telephone number or web address in different color. Can anyone please tell me where exactly the text is been written in Message View? On clicking this items it should launch appropriate event. If anyone touches a telephone number it should launch the dialer or if it is a valid email address then it should launch the Compose message event and so on.
Another question is whether to display message is Android uses the WebView?
I have a quick question about editing a contact that I was hoping someone might be able to help me out with. When looking at a contact, you will notice that one phone number (and one email address) is marked as "Primary". When calling without directly using contacts - just the list that pops up as you are typing the number or name - the phone call will be made to the number that is marked as "primary" instead of giving a choice. How do you change the "Primary" number for a contact? So far, the only way I have found to do it is to delete all numbers except for the one I want as the primary, and then add the rest after. Is there a way in editing the contact to just make this change without deleting the numbers and adding them back?
View 6 Replies View RelatedThe tones I hear when dialing a number suddenly seem louder than they used to be. Yet I can't find anyplace to change the keypad volume. What am I missing?
View 1 Replies View RelatedIm 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 ContentProviderOperation. But trying to find the backreference through querying for a display name like this does not work: The big challenge is a huge lack of good documentation. I would be very satisfied to just get my hands on some working copypasta to study. Code...
View 4 Replies View RelatedThe semi-standard way of getting a contact name from a phone number is to use Contacts.Phones.CONTENT_FILTER_URL and append the phone number, as in the following sample code. This works fine on Android 1.6, but not on 2.0 -- is there a way to perform this function that works in all versions of the Android API? private String getContactNameFromNumber(String number) {// define the columns I want the query to return String[] projection = new String[] { Contacts.Phones.DISPLAY_NAME, // encode the phone number and build the filter URI Uri contact Uri = Uri.withAppendedPath (Contacts.Phones.CONTENT_FILTER_URL, Uri.encode(number)); // query timeCursor c = getContentResolver().query(contact Uri, projection, null,null, null);// if the query returns 1 or more results}
View 2 Replies View RelatedI 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 and display name. Can you please suggest an explanation or possible reason for that?
I am trying to get the sender's name from the contacts database using a content provider. The problem is I don't know how to implement it. Like now I can only pull the phone number from the smsMessage. I need to check to see if the phone number that is calling is in the users contacts first and if it is display the name if it is not then display the number.
View 1 Replies View RelatedI have an Android 2.1 device (HTC Incredible). My app, however, must be compatible with early (pre SDK 5) devices, so I am using the deprecated format of filter URI:
Uri contactUri = Uri.withAppendedPath(Contacts.Phones.CONTENT_FILTER_URL, Uri.encode(number));
Cursor C = context.getContentResolver().query(contactUri , null, null, null, null));
The number is of the form 15555551212. This fails to find the Contact, at least on my device. However, changing to the new (SDK 5 and later) ContactsContract format URI
Uri contactUri = Uri.withAppendedPath(ContactsContract.PhoneLookup.CONTENT_FILTER_URI, Uri.encode(number));
Cursor C = context.getContentResolver().query(contactUri , null, null, null, null));
results in success. Originally, the corresponding number in the Contact was in the format +1 555 555 5555, but I changed it to exactly match the input number 15555555555 and the old format URI still fails. In both cases, the new format URI succeeds. Does anyone have any thoughts as to why this is the case?
I want to read the phone number and name using Android. I used the following code. It can only read phone name. How can I read phone number. I am very new in Android. Code...
View 1 Replies View RelatedWhen adding new contacts to the droid x, it added it as both a goggle contact and phone contact. (i only have one goggle account setup). I went into contacts -> menu -> more -> settings. I am UNABLE to check/unchecked the "Phone Contacts" (it is always checked). The goggle one i am able to check/unchecked. WHY and HOW can i toggle the phone contact? Also, backup assistant only takes PHONE contacts and not GOOGLE contacts...while g mail contact sync only takes goggle contacts and NOT PHONE contacts. How can one change phone contact to goggle contact? (i have seen posts all over but no answers...and just replies saying "i have the same problem") I am trying NOT to have two (2) different types of contacts. PHONE and GOOGLE. I just want goggle contacts ( or phone contacts. so i can at least use verizon's backup assistant.
View 8 Replies View RelatedI have done a search for this and I have not found answer. I have inadvertently created some of my contacts as phone contacts instead of google contacts. The main negative of this is that I can not sync these contacts. Does anyone know of way to change the contact type? My phone is rooted if that makes a difference.In another thread relating to this someone mentioned an app that fixes this but I could not find it. Does anyone know of the app?
View 3 Replies View RelatedWhat I'm trying to do, is to get the corresponding contact to a phone number. It works perfect if the number is stored in the contacts in the following format: +<country code><area code><number> But not all numbers are stored this way. Most are without the country code or with "00" instead of "+". Do I have to parse the number by myself and set up a corresponding WHERE clause for the query, or is there anything I can't find in the internet to get this one done by the framework?
View 4 Replies View RelatedSo, I selected "remember this" when I was sending a text to a contact, because it was the mobile number. Turns out, that set the number as "default" for the contact and now I no longer get to choose which number to use when calling. How can I got back to not having a "default" number?
View 4 Replies View RelatedIn my app, user writes a phone number, and I want to find the contact name with that phone number? I usually search the contacts like this:Cursor cur = getContentResolver().query (ContactsContract.Contacts.CONTENT_URI, null, null, null, null); But I do this to access all contacts. In this app I only want to get the contact name of the given phone number. How can I restrict the query? Or do I have to go trough all contacts and see if any has the given phone number? But I believe that this can be very slow this way.
View 1 Replies View RelatedFor android 2.0, how to get a list of all contact's phone number and email? I have an app which works fine for 1.6. Now it is broken for 2.0 Droid. If you could point me an example to get all contact info, I really appreciate it. Previously, I used People.Contect_URI. now it is deprecated and return me nothing. I went through samples but failed to find how to do it in 2.0.
View 18 Replies View RelatedIn Android I can get phone numbers of all the contacts without any problem. Tha problem is that for most users some numbers are stored as 'local' numbers, meaning that they dont have the country code included. For example, if the user lives in US and he has 2 contacts:
1) John - 555-123-1234 (local) (starting 1 not showing)
2) Jane - 44-123456787 (england phone number)
The question is: How do I get all the numbers in an international format, when some of the numbers doesnt include the country code?
I would like to retrieve the name of a contact associated with an incoming telephone number. As I process the incoming number in the broascastreceiver having a String with the name of the incoming caller would help my project greatly. I would think this involves a query using the sql WHERE clause as a filter, but do I need to sort the contacts? An example or hint would be of great assistance.
View 1 Replies View RelatedI am trying to get the contact's phone number after I have retrieved their ID number from the built-in activity. However, whenever I query the database using the cursor in my code below -- I get zero rows returned even though there is a mobile number for the contact I have selected. Can anyone point me in a better direction or show an example of how to get the contact's phone number AFTER getting their userID?
My code:
private Runnable getSMSRunnable() {
return new Runnable() {
public void run() {
Intent i = new Intent(Intent.ACTION_PICK,
ContactsContract.CommonDataKinds.Phone.CONTENT_URI);
startActivityForResult(i, CONTACTS_REQUEST_CODE);......................
I have the following code which queries 1 number of a contact. It works. But how can I change it so that I can query multiple numbers (work, mobile, home) for the same contact and the type of each number?int phoneColumnIndex = cursor.getColumnIndex(People.NUMBER); if (phoneColumnIndex != -1) {String phone Number = cursor.getString (phone ColumnIndex); System.out.println (" phoneNumber:" + phoneNumber);
View 2 Replies View RelatedIn 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: Code...
View 2 Replies View Related