HTC Incredible :: Adding A Single Contact To A Page
May 17, 2010
I don't want to add the Favorite's tool aka People Widget. I want to add a single contact to one of the pages. I had my boyfriend on one, but I wanted to move it to another page, and I accidentally deleted the icon (he's still in my People contact list). But I can't figure out how to add just ONE contact to the desktop.
View 1 Replies
May 14, 2010
I set up HTC sync and Facebook and all that jazz. However, there are a few people in my Facebook Contacts list that I don't really want to have in my contacts list.
I don't dislike them to the point where I'd want to un-friend them on facebook, but I don't really want their number to be in my phone.
Does anybody know any way to delete a single facebook contact from your phone? Click and hold doesn't work, going to their "people" tab doesn't work, I can't figure it out...
View 4 Replies
View Related
Jun 14, 2010
I have contacts saved already but want to add their emails or home #'s, not sure how to do it tho.
View 1 Replies
View Related
Nov 11, 2010
I'm trying to turn a single page app into one with tabs. I've looked at various Googled solutions, but none work, and I can't find a 'Tabs - how they work' anywhere! One problem I have when using a 'Googled' answer is a null pointer exception on the Layout of main.xml.Can anyone help/point me to a decent page?
View 4 Replies
View Related
Oct 28, 2010
Can I add a group of ArrayList into a single ArrayList? The ArrayList groups are of different sizes. Then How can I recognize each ArrayList?
View 3 Replies
View Related
Dec 15, 2009
I want to add,delete,update android Contact Database using native c code. please tell me how to do if any one have done it.
View 3 Replies
View Related
Dec 22, 2009
Sometimes when scrolling down on a page (using my finger to scroll) the page will scroll all the way to the bottom of the page with a single flick of the finger. Am I unintentionally doing a specific gesture with my finger that causes this to happen? Or is this just a bug at this point?
View 9 Replies
View Related
Jul 26, 2010
I would like a small contacts shortcut on my main home page. The only one I have is sunder favorites on another page and it takes up the whole page. So how do I add a smaller contacts shortcut to my main page?
View 5 Replies
View Related
Jan 5, 2010
Or any other smartphone for that matter. I thought this would be a basic feature. I came from the blackberry where this was simple using blackberry messenger. I could send a contact to my wife and when she received it there was an option to save the contact on her end. Is there an app that will do this?
View 1 Replies
View Related
Mar 17, 2010
Can I assign a specific ringtone to one contact? For example have the default for everyone and then another ringtone for just one contact?
View 4 Replies
View Related
Jul 29, 2010
Is there and app out there that will let me choose which contacts I'd like to back up sms and record the calls? Rather than all of them?
View 1 Replies
View Related
Oct 30, 2009
I have a question about the "People (Contacts) app". Is it possible to have more than one phone number for a single contact? I am assuming so by the way the manual is written. I have tried to follow the instructions on page 34 of the manual "adding a number to an entry in People". Step 2 directions do not exist. "Tap ADD>PHONE". I do not see that as an option. Am I missing something?
View 3 Replies
View Related
Feb 6, 2010
After backing up my contacts to google, and synching with it, I now have two entries in my people app for just about every person. It's not a problem in the people app itself, since I have that set to only show google contacts now. The problem is in handcent, as it still shows both entries (phone and google apparently). I've looked in the settings for handcent, but I haven't run across anything for contact lists. Is there any way I can get it to just show one listing per person?
View 27 Replies
View Related
Feb 12, 2012
I'm having issues receiving text messages from a single contact.I'm using the Huawei X1 - running Subpsyke's latest rom. I use GoSMS.The thread I speak of has 5522 messages in it - and I am unable to recieve messages. They send fine and I can't get them.
I believe that this may be because of the huge thread size. Is there any way of preserving these messages but creating a second, new thread for the same contact?
View 1 Replies
View Related
Jul 26, 2010
Need some info on ContactsContract.RawContacts<http://developer.android.com/reference/android/provider/ContactsContr...> :
A row in the ContactsContract.RawContacts<[url] represents a set of data describing a person and associated with a single account (for example, one of the user's Gmail accounts).
I have found two entry for each contact get inserted when I do import contact from SIM card. Why it is so and is it right?
When I am trying to modify entry, compare function from EditContactActivity.java get called. /packages/apps/Contacts/src/com/android/contacts/ui/EditContactActivity.java
In this class in compare function checking accountType which is getting null. Wanted to know with which raw contact this comparison is happening ? and Why it is getting crashed ?
View 2 Replies
View Related
Aug 7, 2010
HTC wildfire: how to store multiple phone numbers in single contact?
View 1 Replies
View Related
Jun 24, 2010
Has anyone encountered an error adding a new contact from edit contact screen?I've encountered this in the emulator and I want to confirm if this is a bug or not.
View 2 Replies
View Related
Jun 24, 2010
I added several new contacts to my Incredible but they do not show up in my Google account? Seems to work fine if I enter it in Gmail first?
View 3 Replies
View Related
Apr 15, 2010
Does anyone know how to add photos for a contact if they're not on Facebook/Twitter etc.? I've got a few photos in my phone that I'd like to add to specific contacts, but can't figure out how.
View 11 Replies
View Related
Mar 3, 2010
I'm trying to add a contact on the phone memory. The code...
And I'm getting an error at executing the LAST line. The exception is called: UnsopportedOperationException. I have added the permission about writting contacts -> WRITE_CONTACTS and it go on getting this error. The error is showed at 1593 line of ViewRoot.handelMessage. What can I do?
View 2 Replies
View Related
Aug 23, 2010
to display the contact i have used this coding
Code:
Cursor cursor = getContacts();
String[] fields = new String[] { ContactsContract.Data.DISPLAY_NAME };
//this.setListAdapter(new ArrayAdapter<String>(this,android.R.layout.simple_list_item_checked,));
SimpleCursorAdapter adapter =
new SimpleCursorAdapter(this,
android.R.layout.simple_list_item_checked, cursor, fields,
newint[] { R.id.contactEntryText });
mContactList.setAdapter(adapter);
exception is thrown, i got successful in textview but i want it in listview(scrollable) to add the contact, i have used the code
Code:
ArrayList<ContentProviderOperation> ops = new ArrayList<ContentProviderOperation>();
ops.add(ContentProviderOperation.newInsert(Data.CONTENT_URI)
.withValue(Data.RAW_CONTACT_ID,0)
.withValue(Data.MIMETYPE, Phone.CONTENT_ITEM_TYPE)
.withValue(Phone.NUMBER, "1-800-GOOG-411")
.withValue(Phone.TYPE, Phone.TYPE_CUSTOM)
.withValue(Phone.LABEL, "free directory assistance")
[code]....
i both add and delete i am not getting any error, but it is not reflected nither in the contact nor in the textView.
View 1 Replies
View Related
Dec 9, 2009
Can anyone tell me how to add contact photo in android emulator. I want to show the contact photo in my app. I am mew to Android.
View 2 Replies
View Related
Jul 15, 2010
Today I set up a group on my desire so that I can send a group text or email to the parents of the kids football team that I help to run. It seem that it uses the primary number that's selected in the persons contact info. Some parents have given me both their mobile numbers and sometimes two email addresses so I want to include them all in the same group. Does anyone know how I can do this? On my previous blackberry curve 8900 I could select multiple numbers/email addresses from the same contact to go into the group.
View 1 Replies
View Related
Oct 12, 2009
Steps necessary to add a couple simple attributes to the stock Android Contacts application. Also, in the event the vendor has shipped their own Contacts application, will the same solution apply equally well to those handsets shipped with custom apps? I'm not looking for anyone to supply code; just a design pattern and any caveats I need to be aware of. I am writing an application that requires a couple new properties on the contact.
View 2 Replies
View Related
Apr 26, 2013
Ok every time out of the blue I add my contacts and it asks what account i want it under (shows yahoo or gmail). No matter what I choose it will not put my contacts on my damn contact list! I have tried what people have said on another post but that **** didnt work. If this doesnt get solved im getting my money back and getting something that isnt a droid
View 1 Replies
View Related
Nov 8, 2009
im new to the droid community..my other winmo phone had spb mobile 3 and there was a feature that took facebook pics and set them as the contact pic..is there a way to do that instead of taking pics?
View 5 Replies
View Related
Nov 13, 2009
I have searched the Android store, and also searched these forums but maybe some more advanced Droid users can help me find an answer.
As with the iphone, inputting a new phone number within seconds is rather difficult on the Droid. That got me wondering if there were any third party apps or at least a way through the device OS that will let me quickly add a new contact. So far as I can tell the quickest way is to hit Phone--> input # --->option key---> add to contacts ---> Create new contact. That is 6 steps just to take someone's number! There's got to be a better way.
View 2 Replies
View Related
Jun 23, 2010
1. Is it possible to rename photos on the X10?I suppose it would be possible to attach the phone to the computer and rename them on there, but is there any way of doing it from the phoine itself?
2.Is it possible to assign a contact name to a photo that has been downloaded to the phone?For example, if I happened to download a few pictures of Zhang Ziyi, can I create her as a contact and get the phone to recognise the pictures as being of her?I don;t see a way of doing it.The photos are clear shots that include her face.Again, perhaps I have to do it through the computer?
View 2 Replies
View Related
Jan 22, 2010
Every time I try to add a contact icon (from a saved image on my phone), my Magic saves a low-resolution version of the crop I make.
When I dial the contact, the picture looks HORRIBLE (it seems like the resolution is about 50x50px or something). I tried making contact icons from photos made with the phone or from high-res images that I transferred from my PC, but the outcome is always the same: the resolution of the icon is too small.
Is there a way to solve this problem? There's no point having a low-res image in a high-resolution image placeholder.
View 1 Replies
View Related
Nov 9, 2010
I implemented an application which will add contacts. It is working in emulator perfectly. I have android 2.0.1 device I am checking in that device but it is not adding contacts to contact list. I have given necessary permissions like write contacts.
View 2 Replies
View Related