HTC Desire :: How To Enable Gmail And Hotmail Notifications?
May 5, 2010
I have both my hotmail and gmail accounts set up but don't seem to get notifications of new emails. I only receive them upon going into the app itself. How do I get it so that I get a number icon or whatever over the app to show I have received emails?
View 3 Replies
Jun 11, 2010
My gmail account has no problem getting push email. However, is there a way to enable my hotmail to receive the same treatment?
I haven't even been able to set up my hotmail address yet. It's a hotmail.co.uk address.
View 4 Replies
View Related
Aug 10, 2010
Am i able to change the inbuilt dictionary as i've added words that shouldn't have and now it is starting to choose them.
I have a hotmail programme and a gmail one. Am i able to amalgamate them into one programme. They also do not seem to get email unless i manually refresh. I have gone into settings but it seems to be ok in there regarding when and how often i want it updated.
Battery seems to be a real stinker, I'm getting roughly 7-8 hours before it's telling me to recharge. No live scenes, wifi off anything I'm missing?
I'm on 3 how do i check to see if i can update to 2.2?
View 7 Replies
View Related
Sep 15, 2010
I have had my desire for a few months now and I love it. But since yesterday I have had a problem with my gmaila nd google talk.
The notifications are not coming through on gmail when I get a mail and when I go into the inbox it wont update manually either.
Also this morning I discovered that I cant get into google talk anymore, it simply will not even open. Everything was working fine up till yesterday.Is there a problem with google at the moment I don't know about?
View 2 Replies
View Related
Apr 29, 2010
Right, I'm fairly certain my GMail isn't using push to notify me of new emails arriving as I have just gone into GMail and hit the refresh button and it's fired out 3 new emails from throughout the day.I need to manually set push notifications or should it happen automatically?
View 13 Replies
View Related
Sep 22, 2010
Why is it that sometimes when I receive emails I get two notifications for one email?? They are different formats of notifications though. Both from Gmail just different looking screens. I usually get the outlined envelope in my notification bar but sometimes will get that and also the solid white envelope. Both are the same email just two different notifications. Doesn't happen all the time.
View 2 Replies
View Related
Aug 29, 2010
I have the gmail widget which displays my inbox (black background) with a little mailbox in the top right. When I click on the mailbox it seems to open a whole new page in white, same emails though. Also, when I receive an email I get TWO notifications and effectively have to click on both and open the email twice to delete it. It seems the gmail inbox is duplicated?
View 2 Replies
View Related
Aug 31, 2010
I just got the Epic 4G and I'm confused about how to make my facebook notifications show up AND how can I add a hotmail account and see that I received a new email? I'm confused! I have gmail but the icon won't show how many emails--only on the top left..
View 6 Replies
View Related
Jul 20, 2010
I have 2 accounts set up on my phone, GMail and Hotmail. I've had Hotmail for over 10 years and do not want to convert over to GMail as my primary address.Get new email, delete from PC, still on phone (as long as it was received to the phone before PC deletion)Get new email, don't delete, shows up on phone and PC.Is there anyway to link up Hotmail to work like GMail? If I delete something from one device, I don't want to see it in my inbox next time I log into the other. Did I set something up wrong?
View 7 Replies
View Related
Feb 25, 2010
Anyone else experience issues with gmail not importing their hotmail anymore? This has been going on since last night. Also the setting to "add an account you already own" under the accounts tab in gmail settings has disappeared.
View 8 Replies
View Related
Jan 4, 2010
I am doing an Android application and I want to get the last 25 sent mails from a certain email account.For Gmail I might use http://g4j.sourceforge.net/ and there is Mail Web Service API for Yahoo at http://developer.yahoo.com/mail/.But I couldn't find something to do it with Hotmail.Do you know if it is possible?Also I am worried of having so many dependencies. I don't know if I should do something like https://sourceforge.net/projects/mrpostman/ and do web scraping.
View 4 Replies
View Related
Jan 12, 2010
Is there an e-mail app where I can configure my gmail, yahoo mail and hotmail all at the same place?
View 1 Replies
View Related
Jan 29, 2010
Some have complained about not being able to change the LED or get repeat notifications for gmail. I stumbled on this last night and thought I would share. I haven't tried it and make no claims to its greatness.Gmail Notifier.It lets you change the color of the LED, vibration length, and gives repeat notifications. It also works for multiple gmail accounts I believe.
View 1 Replies
View Related
May 8, 2010
Which folder do they go in (I can't find a "notifications" folder)
View 6 Replies
View Related
Mar 3, 2010
I was frustrated with our droids ability to use multiple pop3 email accounts at once. Sometime my emails would arrive hours after they were sent, which in business is unacceptable. Multiple pop3 accounts and gmail through activesync worked so smooth on my windows mobile Omnia i910. I am now trying to use mail fetcher integrated in gmail. I like it ok, and it's polling interval is getting shorter all the time (since google automatically calculates how often it should do it). I setup the pop3 accounts to get Labeled as the email account they come in on and auto Archive. I Archive the mail because I do not like a common inbox. Call me old school or whatever but I like to keep my buisness and pleasure separated. Here is my question:
My real question is now on my phone how can I automatically tell when a new email arrives from one of those other accounts (since it auto archives under it's label and hence doesn't show up in my inbox). If I can get this working my phone will be everything I always wanted.
View 4 Replies
View Related
Jun 2, 2010
Long time Hotmail user. Live Mail works great on Windows mobile of course. I know I can set up the Eris to poll foor hotmail but I have a question.Will email run smoother if I just forward my hotmail account to my Gmail? And if I set up my gmail through the internet UI to "Reply As" my hotmail account, will it also set that as my reply as when I reply via my Eris?
View 6 Replies
View Related
Jul 21, 2010
I have created an application that creates notifications, using the following code:
// Notification notification = new Notification(R.drawable.notification_icon, title, System.currentTimeMillis());
notification.flags |= Notification.FLAG_AUTO_CANCEL;
// parameters
String ringtone = prefs.getString(context.getString(R.string.key_notifications_ringtone), "");
if (ringtone.length() > 0) { notification.sound = Uri.parse(ringtone);
notification.audioStreamType = AudioManager.STREAM_NOTIFICATION;
} boolean useVibrator = prefs.getBoolean(context.getString(R.string.key_notifications_use_vibrator), false);
if (useVibrator) { notification.defaults |= Notification.DEFAULT_VIBRATE;
} boolean useLed = prefs.getBoolean(context.getString(R.string.key_notifications_use_led), false);
if (useLed) { notification.defaults |= Notification.DEFAULT_LIGHTS;
notification.flags |= Notification.FLAG_SHOW_LIGHTS;
} // alert
RemoteViews contentView = new RemoteViews(context.getPackageName(), R.layout.notification);
contentView.setImageViewResource(R.id.notification_icon, R.drawable.icon);
contentView.setTextViewText(R.id.notification_title, title);
contentView.setTextViewText(R.id.notification_text, text);
notification.contentView = contentView;
Intent notificationIntent = new Intent(context, MyActivity.class);
PendingIntent contentIntent = PendingIntent.getActivity(context, 0, notificationIntent, 0);
notification.contentIntent = contentIntent; notificationManager.notify(1, notification);
The notification works, and the correct ringtone is used. However, even though the preferences are correctly activated and notification flags are correctly set (I checked by debugging), the notification never vibrates and never cause the lights to be activated. I would have blamed my phone's settings, but every other app using notifications, like messaging, gmail, and others correctly use all these features. (My phone is a HTC Hero with Android 2.1)
View 1 Replies
View Related
Nov 29, 2013
My iPhone would tell me if I have a new SMS, Facebook notification, or message + a # indicator on the icon. anything similar for Android?
Right now I get a notification and it is available at the top if I slide down from home screen (hangouts, sms or mail) but is there anything that would enable similar to the below iPhone screen shot?
View 2 Replies
View Related
Jan 30, 2014
I have installed Desktop Notifications and Pushbullet. Both apps require me to enable them in the Notification Mirroring Service. To do that it always takes me wifi to switch the wifi on.I don't have wifi, I have 3G. How do I enable the service without wifi?
View 3 Replies
View Related
Jul 29, 2010
How do I enable notifications for updates to apps I've downloaded from the marketplace? Can't seem to find the option.
View 8 Replies
View Related
Apr 24, 2010
Is there a simple way to enable / disable vibrate for the phone / notifications? I tried using the volume rocker, going to vibrate there. That works for the ringers, but not notifications. I mainly want to set / unset vibrate for gmail and Google Voice. I have tried various 3rd party apps like Volume Control / Audio Manager, but nothing seems to work consistently.
View 2 Replies
View Related
Aug 20, 2010
I use hotmail on the standard email program. At first mails older then 3 days just vanished from my phone...
I went into settings and changed mail to download from 3 days to all. So far so good.
But from time to time I get "new mail" but these are mails that have been sitting in my inbox for a few weeks (on the phone I mean)
How come? or is there another alternative? An app that links to hotmail (really link and not donload the mial to phone) and even refreshes at specific times to alert you if you have new mail?
View 3 Replies
View Related
Jan 6, 2010
I tested the app on G1. It is working fine, but when I tested the app on Droid, I got the following log messages. actually I tried to launch my app when i had a video file as a attachment. My app launched but not played. here is the log I got:................
View 4 Replies
View Related
Apr 7, 2010
My 1st android phone so pretty new to it all, managed to get my gmail working but cant get hotmail working. Also another question is can I get the contacts just to display only phone contacts rather then all phone, facebook and email contacts?
View 26 Replies
View Related
May 25, 2010
i recently added hotmail account and then removed it from my phone - but on the home screen it is still showing that i have emails to read i have tried to re-add the email account but a message comes up stating that it is already added.
View 2 Replies
View Related
Aug 23, 2010
He's set up his gmail and work mail on the phone just fine, but his hotmail is playing silly buggers. The gmail is through that app, the work and hotmail through the desire mail app.
Anyway - he cannot get any hotmail emails into the inbox. When you first set up the account, he gets two 'welcome' mails - the kind you get when you set up the mail account online, welcoming you to your inbox. No other emails ever come through.
However - he can send from it. And it appears in his outbox online.
I looked in the syncing sections and under the exchange active sync - which works for his work - there is no hotmail. Except somehow it must sync somehow as it's sending his hotmail fine...
View 16 Replies
View Related
Sep 2, 2010
Has anybody got this working? I still get the message I should try again later.
View 2 Replies
View Related
Jul 7, 2010
Can anyone tell me how to send a video on my htc desire to someones hotmail or any email addy
View 5 Replies
View Related
Oct 15, 2011
Is there a Way to enable message sent notification sound in gmail (like in ios)
GT-I9100
View 4 Replies
View Related
Feb 13, 2012
How can I enable offline message view in the Gmail app? At the moment I cannot see the folders / messages I have previously viewed when offline.
View 2 Replies
View Related