General :: HTC EVO 4G - Google / Circles Bloating Android Contacts File?

Jan 25, 2012

HTC EVO 4G Running Gingerbread

Google automatically created a group in my contacts file (url....) called "Circles." It contains everyone in my Google+ circles. Problem is that when I sync my contacts file on Android, it pulls all of these contacts (2,000+) onto my phone. The contacts application allows me to filter them (so they don't display), but these contacts (with their thumbnail images) consume over 30MB of precious storage space on my phone! Note I do NOT have Google+ installed on my phone (memory issue). If I delete that group from my contacts, my understanding is those people will be removed from my Google+ circles.

How can I stop this group from downloading? I will never email or call any of these people and this is making my phone almost unusable (memory issues), if I can't resolve then I'll probably be forced to delete my circles in Google+. Don't want to do that but it's more important that my phone works...

General :: HTC EVO 4G - Google / Circles bloating Android Contacts File?


General :: Possible To Resize Circles Widget?

Mar 28, 2013

Ive had my Droid Razr M for less than a week and I love it. I really like the Circles widget, but I want to make it smaller, is it possible to resize it? I dont see a way to get into an options menu for it.

View 1 Replies View Related

General :: Circles Widget For UCCW?

Oct 14, 2012

I was wondering if there was the circles widget for uccw.

View 2 Replies View Related

General :: ICS 4.0.4 Turn On USB Storage After Pressing Just Circles Only

Feb 4, 2013

Just now i connected my android phone(ICS 4.0.4) with my pc and the "USB Connected Turn on USB Storage" notification pops up. But on pressing the "Turn on USB Storage" the cirlce below it just keeps on circling and doesnot opens my sdcard in my pc as earlier it used to do. I removed the battery,sdcard and placed them again

View 2 Replies View Related

General :: Favorite Contacts Disappearing When Syncing To Google Contacts?

Oct 16, 2012

My wife's phone - which is a ZTE Blade running 2.2 - is losing it's favorites in the contacts manager each time it syncs to Google Contacts.

I looked up her Google Contacts [URL] and there is no "Starred in Android" group, as it should be. I think it should be automatically created when she fovorites a contac in her phone. But instead, it deletes the starring of the contacts in the phone each time it syncs.

View 1 Replies View Related

General :: ICS / Disable Google Contacts And Move Contacts To Phone

Apr 16, 2012

I don't want my contacts to be synced with Google. IIRC, this was possible in 2.x. Having upgraded to 4.0.4, I'm not able to disable Google contacts.

I'd like to:

1. Disable contact sync (this works)

2. Change all contacts from Google contacts to phone contacts

3. Add new contacts as phone contacts by default.

Using the "Accounts and Sync" settings, I'm only able to deselect "Sync Contacts", but I can't find a way to move the contacts and disable the creation of new Google contacts.

View 2 Replies View Related

General :: Facebook Contacts Merging With Google Contacts Stop It?

Oct 18, 2012

My Facebook contacts are merging with my ICS "People" address book and Google contacts. I don't want this.

I opened the FB app from my Rezound (ICS) and looked at the settings. The "Sync Contacts" option is set to "Don't sync"

Then I looked in the Android Settings --->Accounts&sync--->facebook where there are three boxes, sync calendar, sync contacts, and sync live feed. I made sure all those boxes are unchecked.

I figured I'd just try deleting FB from my Rezound but it seems to be undeletable if that's a word. It's like standard bloatware that I actually use on occasion.

So why are my FB contacts still merged with my Google contacts? I am seeing my contacts with their FB photo and this drives me crazy. I don't want FB communicating with my address book. Gingerbread didn't do this.

View 3 Replies View Related

General :: Deleting Phone Contacts But NOT Google Account Contacts

Feb 1, 2014

how google accounts work. I got a phone previously owned by a family member and all his contacts are still in the phone. I was wondering if it is possible to delete all the contacts on the phone but not affect his google account contacts? Also, if i reformat the phone, will this delete all his google contacts?

View 1 Replies View Related

General :: File Transfer To Contacts

Jan 14, 2013

If both people had the same app and of course had android... Like where I could upload something and they could download it like a mms, or would I have to use cloud sharing? Also which is the best cloud sharing and easiest for both pc and phone? Skybox/Cloud whatever microsoft calls it, dropbox or? I'd like one where I could upload everything from a pc with no transfer/UPLOADING required, just drag ad drop.

View 2 Replies View Related

Android :: Loop To Draw All Of The Circles?

Feb 24, 2010

I' trying to complete an assignment. I need to be able to draw circles with the canvas in Android and also draw the ten previous circles while my finger moves. I have saved the coordinates in an arraylist and tried to use a for loop to draw all of the circles. Here is my code, I'm just looking for suggestions not answers if anyone has any. I will attach my code. Right now it only draws one circle at a time.

`package edu.elon.cs.mobile;
import android.content.Context;
import android.graphics.Canvas;
import android.graphics.Color;
import android.graphics.Paint;
import android.graphics.Point;
import android.graphics.Paint.Style;............

View 1 Replies View Related

Motorola Droid :: Contacts Only Syncing To Google All Contacts Not My Contacts

Jan 16, 2010

I seem to be having a sync issue with my Droid.When I add a contact to my phone, it doesn't sync into "My contacts" in Gmail; it'll sync into "All contacts". So, a couple of questions:

1) How can I get the phone to add new contacts created on my Droid into "My contacts" in Gmail?

2) I'm trying to understand the point of "All contacts". Why does Gmail want to keep a list of anyone that I've ever sent an email to? Otherwise, it'll be simple enough to just merge the two groups and call it a day.(Note: When I bought my Droid I did NOT have the VZW sales person transfer my contacts or any data from my old Blackberry to my Droid. I used Google Sync on my BB and synced my contacts from my BB to Gmail, then when I got the Droid, it automatically pulled my contacts from Gmail.)(FWIW, yes, I did a search and found two great threads: http://androidforums.com/support-troubleshooting/15042-how-do-i-push-droid-contacts-back-gmails-my-contacts.html and http://androidforums.com/motorola-droid/15069-contacts-dont-really-synchronize.html but I have a different situation than most of those guys and I'd actually prefer to sift through and merge a couple of contacts from "All contacts" to "My contacts" every once in a while than deal with a backup and factory reset.)

View 4 Replies View Related

Android :: Draw Cupola Circles At Random Positions

Jun 15, 2010

I am trying to draw a cupola circles at random positions in an Android application. I draw them on a bitmap and then draw that bitmap on the canvas. This is the function where a draw the circles:

private void drawRandomCircles(int numOfCircles) {
Canvas c = new Canvas(b);
Paint cPaint = new Paint;
cPaitn.setColor(Color.RED);
for(int i = 0; i < numOfCircles; i++) {
int x = Math.Random % 100;
int y = Math.Random % 100;
c.drawCircle(x, y, 20, cPaint)
}
}

The Bitmap b is global. And after calling this function I just draw the bitmap in the onDraw method. Now the problem is that I only get one circle drawn on the screen, no matter the size of numOfCircles.

View 1 Replies View Related

General :: Get The File From Google Play?

Mar 8, 2013

I want to go to google play store on my computer and get the file. But when I click install it just kind of lets me open the program on my device, but I want the installation file on my PC. I don't see an option for that.

View 7 Replies View Related

Android :: Simplest Way To Draw Pixels Lines / Circles On A View?

Aug 14, 2010

What is the simplest way to draw pixels, lines and circles on a View?I want to move a cross cursor around, so nothing particularly intensive.I thought I could extend SurfaceView and add it to an XML and it would just work, but it just appears black, however, when I look at the layout view of localmap.xml in eclipse, the graphics appear as expected. Any ideas? My onDraw is never called on the emulator, and even calling invalidate on the class makes no difference. I shall keep trying but can anyone see anything I've missed? or is there a better way entirely? Code...

View 1 Replies View Related

Android :: Convert Google Contacts Back To Phone Contacts

Nov 16, 2010

When I switched to the Samsung Fascinate from a previous non-smart phone, I transferred all of my contacts from the phone over. I think in the setup somewhere I chose to convert my contacts to Google contacts. That was really confusing at first, because I didn't know what it did, and didn't even remember I had done that until recently. I'd like to get the contacts back to phone contacts (not Google contacts) for multiple reasons, which I won't bother listing for now. So, does anyone know how to UN-convert or re-convert Google contacts back into phone contacts? I really don't want to have to recreate all of the phone contacts, because I've got a LOT of them. I would remove my Google account from the phone, but I worry that would remove all of my contacts completely, which wouldn't help me.

View 4 Replies View Related

HTC Incredible :: Don't Get Little Green Circles

Sep 1, 2010

I have used the full page People widget since day one. Now that I have FROYO, I don't get the little green circles that tells me a contact has updated something like their Facebook Status.

View 4 Replies View Related

HTC Incredible :: Little Circles Next To The Speaker?

May 23, 2010

I know that the one to the right of the ear piece is the LED, but what are the two that are on the left?

View 8 Replies View Related

General :: Google Contacts Not Syncing?

Apr 15, 2012

When I look Accounts and sync settings on my AT&T Note, is shows my Google account in red. Under the Google account Contacts shows the ! and states Sync is currently experiencing problems. It will be back shortly. It's been a very long time.

View 8 Replies View Related

General :: Syncing Contacts With Google?

Oct 10, 2013

I sync my contacts with Google. OK, how exactly do I do this? People have said, sign on to google and it's all automatic.

First of all, I'd like some verification that my Contacts have been sync'ed before I shut down my existing phone and fire up a new one. I cannot find where -- with my phone -- that I can view my Contacts on Google's website. When I go from my PC, I can clearly see in GMail that my phone Contacts are NOT there at all.

Second, with the Gmail app on the phone, I cannot find where you can view and manage Contacts like you can on the PC view.

View 2 Replies View Related

General :: Local (non-Google) Contacts In ICS?

Jun 17, 2012

I have a Galaxy Nexus with stock Android 4.0.2. On day one, I imported a bunch of contacts by writing a small program using the contacts API. This worked great, and they all show up as "phone-only, unsynced contact" in the contact list, which is exactly what I want. When I now try to manually add a new contact through the phone's menus, I have no choice but to add it as a "Google contact". How can I add it as local (unsynced) from the menus?

View 1 Replies View Related

General :: Google Play Store Zip File For Flashing

Jul 8, 2012

I would like a zip file with ONLY play store to apply it (flash )(CWM) from sd card....I can find only with other g apps....

View 9 Replies View Related

Android :: How To Turn Phone Contacts Into 'Google' Contacts?

Jul 26, 2010

I own a HTC hero (Orange). With talks of android updates becoming available, there seems to be a mad rush to back up everything so that nothing is lost on the update. There are many ways of doing this, but one of the most common problems, is that people have their contacts saved as 'Phone' contacts and not 'Google' contacts. This means that they will not sync with Google mail. There was no contact export available to me (I think because my firmware was still 1.5).
This seems to be a solution that will solve the problem without having to write out every single contact number in Google mail.
1. Enter android market.
2. Search 'Contact sync'
3. Download/Install this application.
4. Run the application
5. All contacts will be turned from 'Phone' contacts to 'Google' Contacts
6. These contacts will then be synchronized with your Google mail
This means that if your contacts are lost on your phone at any point (eg. an update), they can easily be 'Exported' back to your phone through Google mail.

View 5 Replies View Related

Android :: I Accidently Deleted Contacts On Google Contacts

Jan 29, 2010

I accidently deleted 44 contacts on google contacts. I still have them in my phone, as I don't have a data plan and the wifi wasn't enabled, thankfully.Now, I want my phone to get those contacts on the google contacts. Is it possible to do that?

View 1 Replies View Related

General :: How To Find Out / And Backup Contacts To Google

Oct 21, 2013

so im wanting to do a factory reset on my phone because its been doing some really weird stuff and have tried everything under the sun to try and get it running smoothly again and the only option i have now is to do a reset ....but im kinda new to android and was wondering how i make sure that my contacts are backed up to google and if they aren't how do i go about doing that..i have a galaxy s3 on att.

View 3 Replies View Related

General :: Samsung S2 - Contacts Syncing With Google

May 9, 2013

Dropped my Samsung S2 into water and it was not at all salvageable. To my shock I wasn't using a micro SD nor are my data as SYNCED at I thought they were - basically I lost all my contact numbers. I borrowed another S2 so I'm still using Android.

My question is, in order not to lose all my painfully re-built-in-progress contacts, how do can I save numbers that will be synced to my gmail account? here's my actual question:

I was asked where to save the new entries I put in, thinking in terms of syncing I chose to save to google. HOWEVER, google synced with the existing contacts i have with GMAIL. I.e. I can't locate a friend's contact card without having to dig through a WHOLE list of email addresses, e.g. some random inquiry email address that was a one off and i will NEVER use again.

HOW can i separate the two? My objective: save contacts somewhere which can be autosynced so my contacts can be retrieved in case phone dies again/to make it available for syncing on any new device/just as a reassuring back up - WITHOUT mingling them with gmail contacts (i.e. pure email addresses not phone numbers) .

Another observation, if you are still reading, a friend sent me some contact cards via whatsapp, and despite having chosen to save contacts by default to google (instead of sim/SD), those contact cards are saved on the phone. What's my best option? Thinking of getting S4 and seriously, manually putting everything in again is unthinkable, almost an insult to smartphones...

If i may side trek further, when i lost all my data, my calendar events were the only thing I have "sync-saved". For whatsapp history (from where ppl who thought i used an iphone said) it is saved on icloud so all the conversations will be kept intact AND from whatsapp u can make out a lot of the numbers. Instead for android there's not syncing with a cloud for whatsapp, now I have fired up whatsapp again I get these "Shell" group chats with no history and just several numbers which i dunno who's who. If android users can benefit from background saving of whatsapp history ONLINE (and not inside the phone i.e. like me lost when sth abrupt happens?)

View 1 Replies View Related

General :: Google Sync Is Destroying Contacts

Mar 26, 2012

I have a Vivid. Google contacts are set to sync. I also my outlook contacts using HTC sync (or MyPhoneExplorer). I used to have ~1300 contacts in Google. I now have 16. Everytime I restore my contacts, they are soon gone. I made a google contact yesterday and it is now gone. The destruction seems to happen when I sync with outlook.

View 2 Replies View Related

General :: Google Contacts Relationship Field?

Nov 10, 2012

at the bottom you see a "Add relationship" field. If you click Add relationship, you are presented with a list of relationships. In here I selected Father. There is then an input box next to it.

What are you supposed to put in there? I've already told Google this contact is my Father, even if I put his real name in as the contact details, it still gives me that option.

At first I thought perhaps it was for Google Now. For instance, my girlfriend is down as her full name, so when I say "Call my Girlfriend" it would call her. However it seems like that isn't the case.

View 4 Replies View Related

General :: Why Won't Contacts Upload To Google Account

Jan 24, 2013

I'm having an issue syncing my contacts. I have my phone set to sync contacts with my Google account; however, whenever I add new contacts to the phone they are never added to my Google account. I will press sync now and everything (including contacts) will claim to have successfully synced although my newly added contacts from the phone remain local (on the phone but not on my Google account). Why won't my contacts get automatically added/uploaded?

SAMSUNG Galaxy Note II

View 6 Replies View Related

General :: Viewpad 10e - Cannot Get Google Contacts Working

Apr 27, 2013

I have a Viewpad 10e which is not an officially supported device with Google. I have installed the only custom rom out there from Sidenk - [URL] ....

There is no contact/people icon on there. I used to have this working with the market apk on the stock ICS rom last year but due to a recent upgrade from Viewsonic that stuffed my system so I had to reinstall. I cannot for the life of me think how I did it but I've downloaded loads of different packages relating to googlecontactssyncadapter.apk, contacts.apk and contactsprovider.apk. Some of them install but do nothing, some of them say the package cannot be parsed, some say there's a conflicting signature.

I've downloaded loads of files, This device is not well supported.

View 5 Replies View Related

General :: Synchronizing Contacts With Google Maps?

Jul 28, 2012

I want to know if there any way of synchronizing contacts with google maps. Is there any chance of opening google maps and see all the houses of my friends? To many contacts I added their adresses so what I want is to open the GMaps and select a destination easier.

View 3 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved