HTC EVO 4G :: Home Screen Just Shows In Task Bar - Not On Gmail Envelope While Testing
Jun 5, 2010
According to previous screen shots before buying evo yesterday, the home screen gmail envelope has a green circle with # of unread messages but while testing out and sending multiple messages from my desktop to myself, it just shows in the task bar and not on the gmail envelope. Am I missing something her?
View 2 Replies
Jul 21, 2010
Is there any way to disable the screen that shows all the 7 screens after tapping the home screen? If not disable get rid of it all together.
Or maybe an app to do so?
View 6 Replies
View Related
Jun 8, 2010
I have it set up update hourly, and it will show it to be sunny, even until 8PM sometimes 9PM.It's not exactly sunny at that time of day, I'd more expect to see the moon by that time of evening.Is this just weird, or is it just using the "official" sunset time of 8 something and calling it sunny until then? I'm a very new Hero user.I'm within my 30 days, and very tempted to take my Hero back and get a Evo, but, don't want to spend the extra $$ for the Evo, and don't need the extra monthly expense either!
View 10 Replies
View Related
Feb 10, 2010
This home screen randomly shows up on my wife's droid. anyone see this?
it looks functional, but it isn't. her's is a vanilla 2.0.1 droid with no 3rd party UI.
View 3 Replies
View Related
Aug 18, 2010
So this thing just started within the past week. My phone's stock gmail app will show new emails so I look at them and then they are all read, showing 0 new.But when I login to the web browser version, 5 minutes or even later(up to hours later), the web browser gmail is not updating to show that I already read the emails.I'm on JH2. So maybe it is a bug with the firmware?Or maybe a setting got changed but I'm not seeing how to handle the issue.
View 3 Replies
View Related
Jun 24, 2010
I am having a heck of a time getting any pictures and many downloaded wallpapers to show up on my HTC Incredible. After I set the picture or whatever and crop it, I return to the home screen and the Colorful Bubble HTC Wallpaper always shows up instead, only the live wallpaper really works all the time. Anyone else have the same problem or know a solution?
View 1 Replies
View Related
Oct 14, 2011
I have two email accts set up but only the default email account shows on my home screen. How can i have both show up?
DROID BIONIC
View 1 Replies
View Related
Jan 1, 2010
One of the best features IMO of Home++ was not having the task bar visible at top of screen. I really liked just having the scrolling toolbar at bottom. Recently the task bar at top has shown back up. Anyone else experiencing this? Was this part of a recent update that I didn't pay attention to until just now?
I still really like Home++, even with that bar, just prefer not to have it.
View 5 Replies
View Related
Apr 5, 2010
I set my screen to use HOME versus Sense UI. Well, I put the ATM widget on my screen for single click app ends...when I do this, though, it kills home.
Anyway I can exclude Home from this. It doesn't appear to be an option in my Apps list when i open Advanced Task Manager
I have YET to receive a single email from androidforums.com when I use "Instant Email Notification" for thread replies.
View 3 Replies
View Related
Jun 4, 2010
I don't do pop mail anymore, just gmail and would like to set it up on it's own home screen page in full screen mode. Does anyone know how to do this?
View 5 Replies
View Related
Aug 17, 2012
I type in "ducks without feathers" on my work or home pc and that same search shows up on my galaxy s3 a little while later. Im connected to a wireless network on both and signed in to google on all 3. Is this why? Does it work the opposite where things written on the phone show up on the computers? I find this invasive if i want to search something in private but it shows on my work pc?
View 6 Replies
View Related
Oct 1, 2010
I saw a few similar threads but no answered my question. Is there an app that will show me how many gmail emails I have in my status bar. I know there are ones for a widget but I'm looking more for the status bar as opposed to a widget.
View 1 Replies
View Related
Dec 26, 2009
In my gmail account in my browser (desktop computer), I go to contacts and I see one entry for myself. It has all the info I want in it (I just added my address).When I go to my droid and find myself in the contact list, I see several sections that begin with "from blah@gmail.com" where it's my email address.Why isn't it only one big section instead of looking like it found my contact info multiple times in my gmail account requiring multiple sub-sections? How come I don't see my address in any of these sub-sections?
View 3 Replies
View Related
Jun 21, 2013
I checked this with several of my friends, everyone's chat history stopped syncing.
View 1 Replies
View Related
Feb 24, 2010
I wrote a simplest test based on android.test.ActivityInstrumentationTestCase2.
CODE:..............
View 2 Replies
View Related
Nov 8, 2011
what is the file that controls this?
i am using a MIUI-based rom and replaced sidekick with googlesearch, however, it also removed the sidekick recent apps/task manager without replacing it with the stock recent apps list
so now when i hold home, nothing happens..
View 9 Replies
View Related
Jan 13, 2010
My application has two activities, that I start in this order: HOME > A > B Now I press HOME and launch "A" again. I would like to see activity "B" on a top of "A", but instead I get "A" - so the activity stack is cleared. Manifest: <activity android:name=".activity.A" android:label="A" android:always Retain Task State = "true">What should I do?
View 2 Replies
View Related
Jan 21, 2009
I'm having trouble to figure out how to bring the paused Task back to foreground. As far as I understood, when I click HOME button while a task is running, the task will be paused (onPaused() of the current top-level activity will be called,right?). I think there might be a way to bring this paused task back to foreground since the task is still ALIVE, but I don't know how. Do I have to put some more codes in the activity (I mean the one that is paused)?
View 5 Replies
View Related
Mar 24, 2009
I am just starting on an Android app and I am puzzled about why my Task activity stack is being reset any time the application is launched from the Home screen. I used the ADT tools to create the application in Eclipse. The main activity is ".UserLaunch" and it starts the activity ".About" when the user presses a button. If the user then presses HOME and then relaunches the app, .UserLaunch is displayed and is the only thing on the stack.
.UserLaunch has the launchMode singleTask. .About is standard. According to the documentation at http://developer.android.com/guide/topics/fundamentals.html#lmodes: "However, a "singleTask" activity may or may not have other activities above it in the stack. If it does, it is not in position to handle the intent, and the intent is dropped. (Even though the intent is dropped, its arrival would have caused the task to come to the foreground, where it would remain.) "The Task stack should be brought to the foreground and .About should still be displayed. I added Logging to all of the lifecycle events (edited to remove timestamps and shorten DEBUG/ and INFO/ to D/ and I/) and you can see that when HOME is pressed, .About cycles through onPause and onStop (as expected). Then when the app is again launched, .About is destroyed and .UserLaunch is restarted D/UserLaunch:(670): onCreate() D/UserLaunch:(670): onStart() D/UserLaunch:(670): onResume() I/ActivityManager(52): Displayed activity com.cequint.cityid/.UserLaunch: 4910 ms I/ActivityManager(52): Starting activity: Intent { comp= {com.cequint.cityid/com.cequint.cityid.About} } D/UserLaunch:(670): onPause() D/About(670): onCreate() D/About(670): onStart() D/About(670): onResume() I/ActivityManager(52): Displayed activity com.cequint.cityid/.About: 1031 ms D/UserLaunch:(670): onStop() I/ActivityManager(52): Starting activity: Intent { action=android.intent.action.MAIN categories= {android.intent.category.HOME} flags=0x10200000 comp= {com.android.launcher/com.android.launcher.Launcher} } D/About(670): onPause() D/About(670): onStop() D/dalvikvm(670): GC freed 413 objects / 34128 bytes in 72ms I/ActivityManager(52): Starting activity: Intent { action=android.intent.action.MAIN categories= {android.intent.category.LAUNCHER} flags=0x10200000 comp= {com.cequint.cityid/com.cequint.cityid.UserLaunch} } D/About(670): onDestroy() D/UserLaunch:(670): onRestart() D/UserLaunch:(670): onStart() D/UserLaunch:(670): onResume() Here is the relevant section of the Manifest: <application android:icon="@drawable/icon" android:label="@string/ app_name"> <activity android:name=".UserLaunch" android:label="@string/app_name" android:launchMode="singleTask" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> <activity android:name=".About" android:launchMode="standard"> </activity> </application> Anyone have any ideas why this is always resetting the Activity Stack?
View 11 Replies
View Related
Sep 15, 2010
I'd like to test an application on a variety of screen configurations so I know that it'll work (and the layouts will look right) on tablets and other oddly sized devices.
View 2 Replies
View Related
Oct 4, 2013
A Tasker task that when I'm on the lockscreen, I can tap or double tap to turn the screen off. I've looked in the Tasker tasks and I'm unable to find anything for this. I already use the Nova gesture+ScreenOff app to turn the screen off when I'm unlocked and at the homescreen, which works perfectly. The only thing Nova can't do it turn the screen off from the lockscreen.
View 1 Replies
View Related
Mar 2, 2010
The Home sample in the android sdk doesn't implement the Add item, which bring up the "Add to home screen" popup window, and Notifivcations item in onCreateOptionsMenu and onOptionsItemSelected. How to do that like the default home?
View 1 Replies
View Related
May 7, 2014
The problem is that I have created multiple emulators using android 4.4.2 API and none of them show anything but blank screen..I tried an AVD with Google API 19..thats not working either..
View 1 Replies
View Related
Feb 5, 2014
My Tablet shows black screen after a while animation android logo and no more work. So I tried factory reset. But factory reset doesn't proceed to recover menu. It shows only factory reset logo (Android logo with red triangle) like screenshot.
My tab has only 3 button (power, Volume up and down). I tried both of them. But the logo doesn't move. How to factory reset?
My tab Configuration:
Duocore M7200 7inch, 1.2GHz, 512MB DDR3
View 9 Replies
View Related
Jul 7, 2010
Two things I'd like to be able to do with my incredible.First is reduce the number of homescreens. Seven is really pointless for me, it makes finding the right screen take a little longer and there's just not enough good quality widgets that I need to use. I could do better with 5 and possibly just 3.Second is that when I'm not on a homescreen and I hit the home button, I'd like it to go back to the LAST homescreen I was on, not the center one. And if I'm already on a homescreen, once again pull up the homescreen select menu, instead of going to the center homescreen. It's a waste of a button press to always go to that center screen when pressing the home button.
View 7 Replies
View Related
Jan 25, 2014
I updated my Droid Maxx to 4.4. The change I first noticed is that the home key takes you back to the home screen instead of just leaving an app and returning to the screen I was originly on. This is definitly new. Is there a way to turn it off?
View 16 Replies
View Related
Jun 12, 2010
How can we pass Android Home Screen Widget info ( putExtra maybe ) to an Activity.. What particular method callback will handle this one?
View 1 Replies
View Related
Mar 30, 2010
Whenever I am using any app and press the home button, the home screen blacks out for a few secs and it takes around 10 sec to get all the icons back and before I can start using my phone again. I am using a non rooted mytouch 3g.
This problem does not happen if I exit an app by pressing the back button. It becomes very annoying at times.
View 7 Replies
View Related
Jul 21, 2010
Is there a way to set the which of the home screens the phone goes to when you hit the home button?
View 4 Replies
View Related
Feb 21, 2010
This is more of an annoyance, but whenever I reply to a message off the home screen widget, it automatically defaults to the home number for that contact, instead of replying to the same (cell) number that it was sent from. If I go into the messaging app, it works as it should (replies to the same number).
View 2 Replies
View Related