HTC Hero :: Add Phone Numbers From Missed Calls To An Existing Contact?
Oct 16, 2009Don't see a way to do that when I go to call history. What the hell? The only thing there is add a new contact but that's not what I want.
View 13 RepliesDon't see a way to do that when I go to call history. What the hell? The only thing there is add a new contact but that's not what I want.
View 13 RepliesMy Eris has always had issues with knowing who is who in my recent calls, texts and in google voice from time to time. I reformatted all the contacts to +1-555-555-5555 format(something that someone on a google forum suggested) but it still doesn't fix the problem. For instance- A friend named Steve called me. I see incoming call from and it knows who steve is and says "Incoming call from Steve". I called him back, clicking on the exact icon in my missed calls that says his name and it says I called 5551231234 (unknown). This happens in my messages as well, and it is starting to drive me crazy. I will get a message from 5551231234 and it will only list the number and not the name, so I have no idea who is texting me. For some reason my phone is incapable of putting it together to figure out that the number it lists as unknown is already a contact in my contacts. I have to always call people back to figure out who it is or send a text asking who they are.
View 1 Replies View RelatedHow to set the phone up so that I can view incoming/missed calls numbers? what happens now that all phone calls are just recorded as "unknown"on the screen, even for those I've already saved in the contact list. or should I contact my network provider which is optus in Australia?
View 1 Replies View RelatedMy apologies if this has been discussed before, I searched through a number of threads but didnt find any answers.Just got my Hero for xmas and have been playing around with it, and wanted to know if there is any way to assign several emails/phone numbers to a single contact entry?
View 2 Replies View Related1: My phone gives me two notifications for missed calls. One that comes from '333' which is the number from '3 mobile' here in australia, and a second notification which it says is from a random facebook friend. Someone i dont even have in my phonebook. It has their picture and name?
I am using handcent and am wanting to cut it down to only one message per missed call, preferably i want to stop the one coming from the facebook contact.
2. I am using launcherpro + and was checking out the new calendar widget. Problem is it shows the birthdays for every single facebook contact i have I want to stop these being shown on my calendar. They dont show with my Pure calendar widget. the pure calendar widget is set to display all events in the calendar called 'My Name'. How can i remove the birthdays from appearing from the launcherpro + widget?
Missed calls shows the date but not the time.
View 2 Replies View RelatedOK, so one of my most hated issues has just arisen with my hero:
It's sat on my desk, enjoying full signal. All of a sudden it chimes up that it's got a new voicemail. No missed calls, no nothing, just a voicemail.
I HATE THAT! Can't decide whether to scream at orange or whether to scream at HTC.
Is there not a way to show the time of the missed calls? Or am I totally blanking and not seeing it?
View 6 Replies View RelatedI rooted last weekend. After every missed call I keep getting a text message that says: If I call the second number (408-970-0000) (always the same) - it says "Our records indicate that you are calling from a SMS voice message equipped handset. If you have recently purchased a handset that does not contain this feature press 1, otherwise press 2." How can I make this stop?
View 11 Replies View RelatedWhat are my options for a missed calls counter widget? can't believe this is not stock on the EVO
View 3 Replies View RelatedI'm on O2 UK and if my wife rings me from her O2 mobile or from our home landline my Desire doesn't ring but shows the missed call icon in the notification area. what happens on the phone you ring from i.e my wife�s mobile or our landline all you here is 2 short rings then the phone goes dead.I only have wifi switched on and not the mobile network.that is to say I don't have the 'mobile network' option ticked in 'wireless & networks' screen. Has anyone else had this problem?PS the phone rings fine when I ring from say my work mobile or my work landline and also from other mobiles including ones on O2 UK. >PPS tried turning off the option 'Quiet ring on pickup' but that hasn't made any difference either
View 12 Replies View RelatedI'm trying to add a phone number to an existing contact on android 2.1. Im currently using:
ContentValues values = new ContentValues();
values.put(Phone.RAW_CONTACT_ID,cursor.getColumnIndex(Phone.CONTACT_ID));
String selection = ContactsContract.Contacts.IN_VISIBLE_GROUP + " = '1'";
ContentResolver cr = getContentResolver();
Cursor cursor = cr.query(ContactsContract.Contacts.CONTENT_URI,null, selection, null,ContactsContract.Contacts.DISPLAY_NAME+" COLLATE LOCALIZED ASC");
if (cursor.getCount() > 0) {cursor.moveToPosition(oldcontactid);
contactid = cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts._ID));
values.put(Phone.RAW_CONTACT_ID,cursor.getColumnIndex(Phone.CONTACT_ID));
if (Integer.parseInt(cursor.getString(cursor.getColumnIndex(ContactsContract.Contacts.HAS_PHONE_NUMBER))) > 0) {
Cursor pCur = cr.query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI,null,ContactsContract.CommonDataKinds.Phone.CONTACT_ID +" = ?",new String[]{contactid}, null);while (pCur.moveToNext()) {values.put(Phone.NUMBER,pCur.getString(pCur.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER)));
values.put(Phone.TYPE, Phone.TYPE_MOBILE);}pCur.close();}}
Uri uri = getContentResolver().insert(Phone.CONTENT_URI, values);
but i get an error:
java.lang.UnsupportedOperationException: Unknown uri: content://com.android.contacts/data/phones
how would i be able to fix this?
On a number of occasions, I've missed incoming calls that I never heard ring. This has happened even when the ringer volume is turned all the way up (it's much too easy to inadvertently lower the ringer volume, but that's another story). Yeah, I know - I live in New York City, where it's easy to not hear a phone ring, but I've missed calls even when I'm in a totally quiet room. Just now, I was sitting with the phone on the table in front of me, and it started lighting up with an incoming call, but the ringer made no sound. I checked and the ringer was up 3/4 of the way, so it should have been ringing.
View 25 Replies View RelatedI'm using a Android Wildfire and I used the following code to lookup the contact name of an existing phone number.
private String getContactNameFromNumber(String number) { String[] projection = new String[] { Contacts.Phones.DISPLAY_NAME, Contacts.Phones.NUMBER };
Uri contactUri = Uri.withAppendedPath(Contacts.Phones.CONTENT_FILTER_URL, Uri.encode(number));
Log.d(TAG, contactUri.toString());
// query time
Cursor c = context.getContentResolver().query(contactUri, projection, null, null, null);
// if the query returns 1 or more results
// return the first result
if (c.moveToFirst()) {
String name = c.getString(c.getColumnIndex(Contacts.Phones.DISPLAY_NAME));
Log.d(TAG, name);
return name;
}
// return null if no match was found return null;
}
I am unable to resolve the contact name. The logcat output shows the following
11-14 13:45:35.879: DEBUG/Test(3342): content://contacts/phones/filter/%2B919773653345
Not sure if this is technically the "silent bug" but calls do not even show up on the phone, they just appear as "missed call from...." no noise no other notification. I restarted phone but it did it again right away. Phone does show the 50% bug in battery info.
View 1 Replies View Relatedi am using handcent sms and when i hit to compose new message and then type a name, some peoples numbers come up in the format xxx-xxx-xxxx, but others come up. how come this is and how do i make them all come up with dashes?
View 3 Replies View Relatedhaving problems receiving calls. When I call the phone from another line, nothing happens except its logged as a missed call. The screen doesnt light up and no options for receiving calls. This happened before I installed Google voice. I disabled Google voice and still no joy. Everything else works. I can make calls, browse over WiFi and 3G.
View 8 Replies View RelatedDoes anyone know of an app that can record phone calls to certain numbers (where the phone numbers to record can be in the app). I need this for times I ring customer service and they tell me something, then deny saying it later on and ask me to provide proof (that they damn well know I don't have).
I did have a manual call recorder but I kept forgetting to record the calls, especially at times I really should have. Also preferably one that doesn't make a beep in the call, but not absolutely essential. If there is no app available as I explained, could someone please tell me an app that automatically records every call.
I have an issue that I assume is consistent with all Android 2.1 phones. However, for consistency's sake: I have a HTC Hero.Some of my Contacts who are linked to Facebook have duplicate numbers (because one begins with a '1' and the other does not, or they are separated by '.' instead of '-')Also, some of my contacts list fake or old numbers on Facebook and my phone wants to call them or text those by default. (or sometimes on accident - human error).I wish I could have an option to edit these or mark them as "not shown" on my phone so I don't have to double check which number I am calling, texting or emailing to make sure Im using the right number or email address.The only option I've found is to remove the Facebook link, which is a lame workaround and leads me to forget birthdays.
View 2 Replies View RelatedI have name, phone number and E-mail information of a contact. I just want to insert the additional email and phone for the existing contact. My questions are: How to find the contact is already existing or not? How to insert the values on the additional or secondary address option?
View 1 Replies View RelatedI'm trying to adapt my application (Personalytics) for the brand new Android 2.0, however I'm facing an issue while accessing contacts' phone numbers. What I need to do is to retrieve the name associated to a stored contact based on his/her phone number. At present I'm doing this in two steps:
1) from a phone number I get the corresponding ID of the stored contact (if present)
2) I retrieve the contact's name based on that ID
I managed to use the correct CONTENT_URI for reading contacts by using reflection to be fully compatible with Android 2.0 (ContactsContract.Contacts.CONTENT_URI) and the previous versions (People.CONTENT_URI). Now I'm trying to do the same for Phones.CONTENT_URI (Android <= 1.6) and ContactsContract.PhoneLookup.CONTENT_FILTER_URI (Android = 2.0) which is needed by step 2) mentioned above. But as soon as I try to get a contentResolver by using ContactsContract.PhoneLookup.CONTENT_FILTER_URI I get the following exception:
java.lang.IllegalArgumentException: Unknown URL content://com.android.contacts/phone_lookup
This looks really strange to me, since it should be correct (it is part of the official API)! Moreover, I tried to look at the "API Demos" project, in particular to the classes:
com.example.android.apis.view.List2 com.example.android.apis.view.List3
which are still using the deprecated People.CONTENT_URI and Phones.CONTENT_URI and thus no data (i.e. contacts) is loaded (of course I have sample contacts in the emulator). Is there another approach I can use to get the name of a contact based on one of his/her numbers? (This must work on all versions of Android).
My address book is all over the place! I am coming from a BB curve 3300, i had my contact list with numbers and emails within same field per person. When the address book was transfered over to my Hero, i received 3 to 4 different fields per person! How can i fix tihs without having to manually go in and delete 3 of the 4 fields and enter email, cell numbers to one of the contact?
View 6 Replies View RelatedJust got my Incredible and it is rocking. Damn this thing is fast! I notice that when I try to compose an sms message, the contact search list contains ALL of my contacts (phone + Google). This is super annoying, as I literally have thousands of Google contacts and some people have numerous accounts, so it's incredibly difficult to sort through and is honestly the first thing I have seen the phone start to choke on. The 'People' widget has a 'View' setting that allows me to limit by just phone contacts, but I can't seem to find any sort of filter in the search when I'm composing a message. I can type each name individually and select, but having a big list would be nice. Again, I'd like to be able to select message recipients from a list containing only phone contacts.
View 1 Replies View RelatedSome contacts have different phone numbers. And when I send group SMS, the message is sent to the first number of the contact. So is there a software that can reorganize the position of the phone numbers? So that the mobile numbers are the first in the list.
View 1 Replies View RelatedI'm new to the android OS and I got a Hero two days ago. Is there anyway to get all my facebook numbers into my people list? I have the facebook phonebook link on my homescreen with the my contacts with their numbers but they are not in my people list so i cant directly send a text from the facebook phonebook I can only call, so is there anyway to merge/import to my people list on the phone.
View 6 Replies View RelatedI've searched but haven't found and answer to adding multiple phone numbers to a contact, for example home, cell, work, also how do you join a contact on the phone with the facebook contact info?
View 2 Replies View RelatedSo i was quite surprised to see that the facebook integration on the tattoo doesn't extend to importing Facebook Contact's phone numbers.
and the only way i know of to get them is through adding a 'live folder' to the homescreen through the official facebook app found on other android phones but not the tattoo Any ideas?
I think this is a Handcent issue because I'm not really seeing it in the default app. For some reason I get multiple numbers for a contact when sending a SMS- the same number! I have one contact that when I select to send an SMS to, I get 7 options to choose to send to, and guess what, all 7 are the same phone number. And its not a format issue, it still duplicates if the number has brackets over the area code or just dashes. Not sure what to do and when I go into the individual contact (using People) the number is only listed once.
View 3 Replies View RelatedHTC wildfire: how to store multiple phone numbers in single contact?
View 1 Replies View RelatedI own a Droid, and consider myself fairly savvy in the Android world, however my wife recently got the Ally and is having a problem editing her contacts. So when she initiqally booted up the phone it walked her through logging into google and facebook, etc, and it imported all those contacts into the phone, however, she wants to add in their phone numbers now, but its not letting her. We click on the menu button, click eedit contact, but then there is no way to edit or add phone numbers.
View 5 Replies View Related