Android :: Notification - Perform Task Before Phone Shut Down?
Mar 25, 2009
I would like to perform a task just before the phone is shut down. I thought that Application#onTerminate would be called but that does not seem to be the case. Is there a broadcast intent when the phone is going to shutdown? If not, how to run a task just before the phone is turned off?
View 4 Replies
Jun 10, 2010
I have developed an Android app. Now I want to perform a few operations (i. e. - Reset the settings etc.. ) at the moment the app gets uninstalled from the phone. Is it possible to reigster a listener or a function that is called at the moment the app is removed?
View 2 Replies
View Related
Nov 29, 2009
I've had my hero for 3 or 4 days now.I understand that i do not need a task manager to shut-down apps, but don't fully understand how this works,since apps like Pandora (music streaming) and sportypal (gps tracking) continue to run in the "background." Adding to my confusion is the fact that I'm noticing the phone get sluggish lately, even after a fresh reboot, with only two programs running (Pandora and sportypal). The past 3 days, there were no problems, but now I cannot run with music because the music continues to skip - and pandora becomes unresponsive.I thought perhaps there were too many apps (I've downloaded about a dozen apps) and so I uninstalled most of them.No better.What, if anything, am I missing? Can I be low on space or memory, or what?
View 2 Replies
View Related
Aug 3, 2010
i got advanced task killer yesterday and evrytime i kill tasks it kills them all and 2 seconds later skype comes back as a running task and its starting to do my head in. anyone got a solution that does not involve getting rid of skype.
View 5 Replies
View Related
Aug 6, 2009
I have an application with notification. I want to keep the notification working even if the device once shut down just like an alarm.
View 7 Replies
View Related
Feb 7, 2010
Is there a way to shut off the notification when i get a text without taking it off my side, turning the screen on, unlocking it, and hitting the toolbar?
View 1 Replies
View Related
May 18, 2010
The GPS icon is now always on my notification area. This has only been happening for the past couple of days. Previously, it would come on when in use (e.g. using Google Maps or some other application that was using the GPS) and then would disappear when the application terminated.
I used Taskiller to terminate all running applications, but the GPS icon was still on after I killed ALL of the running applications. So, I'm assuming that it's not because of a new, or updated, application I installed.
It doesn't appear to be causing any problems, but wonder if it's really on and draining the battery more than necessary. Also, it was a reminder to me that I'd left an application running that was using the GPS.
Is anyone else seeing this?
View 14 Replies
View Related
May 19, 2010
I never had this happen with 1.5 but now when I send a text I get a pop up in my notification window. Anyone know how to disable this?
View 3 Replies
View Related
Feb 4, 2010
How do I use adb to perform some automated tasks on my android phone? I need to find commands that I can issue from the command line (ideally, using a .bat file) that will be capable of more than simply opening an application or sending an input keyevent (button press).
For instance, I want to toggle Airplane Mode on or off from the command line. Currently, the best I can do is launch the Wireless & network settings menu and then use input keyevents to click Airplane mode:
CODE:.................
There are quite a few drawbacks to this method, primarily that the screen has to be on and unlocked. Also, the tasks I want to do are much broader than this simple example. Other things I'd like to do if possible:
1.Play an mp3 and set it on repeat. Current solution:
CODE:..................
2.Play a video. (current solution: open MediaGallery, send keyevents, similar to above)
3.Change the volume (current solution: send volume-up button keyevents)
4.Change the display timeout (current solution: open sound & display settings, send keyevents)
As before, these all require the screen to be on and unlocked. The other major drawback to using keyevents is if the UI of the application is changed, the keyevents will no longer perform the correct function. If there is no easier way to do these sort of things, is there at least a way to turn the screen on (using adb) when it is off? Or to have keyevents still work when the screen is off?
I'm not very familiar with java. That said, I've seen code like the following (source: http://yenliangl.blogspot.com/2009/12/toggle-airplane-mode.html) to change a setting on the phone:
Settings.System.putInt(Settings.System.AIRPLANE_MODE_ON, 1 /* 1 or 0 */);
How do I translate something like the above into an adb shell command? Is this possible, or the wrong way to think about it?
View 2 Replies
View Related
Mar 18, 2010
From notification manager, how do I resume a task instead of creating a new instance of it?
I want to create a link in the status bar on the phone through notification manager. When I click on it, I want want a particular task to come to the foreground.
However, it seems my code always launch a new task even if there is an existing one running. For example, I click on the link the first time, a task shows up. When I click the second time, I see an animated task showing up again ... repeat that 5 times. And then when I hit "back" button, the 5 instances will disappear one by one (proving it's not just a single instance). code...
View 2 Replies
View Related
Jun 28, 2010
What possible reason could there be for you to code your apps so that they switch on in the background when the phone is turned on and use up precious battery life?
Or, why would you code your apps to stay on after I, the user, have hit the back button because I no longer want your app to run?
I mean, REALLY! Yes, I own up to being a newbie Android user, and what I don't know could fill the Library of Congress. Still, this is common sense we're talking about here. I've done some industrial app development and Enter/Exit, On/Off are basic pieces of logic in the main loop of an program in any language.
The only reason that we phone users need task killer apps is because you developers insist on creating apps that don't know when the f**k to turn themselves off.
And, it seems to me like you, the app developers, are one of the main reason why these phones have such crappy battery life. I mean, my Samsung Instinct, as bad as it was, got 18 to 24 hours of life off of one charge. With the Hero, I'm lucky if I can get 10 hours, and that's even with configuring my email download to only three times per day!
This is not hard, people. You code the app to stay off until, I, the user, manually turn it on. AND, you also code it to turn off when I, the user, hit the back button.
Yes, I understand that there are certain apps that it is advantageous to keep running in the background. So, fine, make it so those keep running. BUT, there is no possible reason for apps like Flashlight, or BBC News, or Camera, or SprintTV to have to run all the time in the background!
I am so tempted to just trash the lot of you. If I did, maybe I might not have as much functionality, but my teenager would be able to reach me late in the day because my phone battery would still have juice.
View 13 Replies
View Related
Aug 16, 2009
My applications carries on processing when the user presses the home key, and generates status bar notifications if something happens the user requested to be notified about.
If a user holds the home key and then selects the application, it is restored in its correct state with the activity on top that showed when the user left.
However, since the intent that is associated with the status bar notification is FLAG_ACTIVITY_NEW_TASK and I put in the class name of the activity that launched the application (I assume this is what I must do?), the launcher activity is started when the notification is "clicked". I can then switch the application back to the current activity by starting that "active" activity again, but then I seem to have two instances of the activity in memory, since I have to press back twice to leave it. And I suspect my activity stack is then messed up as well.
I have set the launcher activity to be singleTask, but that only helped a bit. From my reading I thought this would just give the task focus if the launcher activity is not on top, but instead it gives the launcher activity the focus.
Is there a way for a notification click to work more like the task switcher provided by long pressing the home button?
View 10 Replies
View Related
Nov 6, 2009
Everyday I am getting this short notification sound a few times but there is nothing shown on the task bar. There is no incoming SMS or calendar event. And it is not the alarm clock. What is it?
View 5 Replies
View Related
Feb 26, 2010
Is there anyway I can shut down the phone from my app without the need for user confirmation?
View 2 Replies
View Related
Sep 24, 2013
when i turn off wifi and lock the android phone next time i want wake up the device my android phone can't wake looks like shut down itself
View 3 Replies
View Related
Aug 23, 2010
I have a tmobile samsung vibrant and the other day some how my phone decided to shut off over night and the alarm ended up not going off and I was late for work. Is there any way to make the alarm go off when the phone is shut off? Or a specific alarm app that works for this? I've looked at other threads but none came to a fix for this problem.
View 3 Replies
View Related
Oct 26, 2010
I'm wondering if anyone is aware of an app that will shut off my alarm clock if I wake and unplug my phone from the charger, then reset it for the following day. I almost always wake before my alarm, and use the alarm in case I oversleep. Would be nice if I didn't have to hear it go off a half hour later.
View 1 Replies
View Related
May 18, 2013
Will Android shut my phone of to prevent it from overheating?
View 2 Replies
View Related
Jun 22, 2012
Is there a way for Android ICS phone/tablet to shut itself down after 30 minutes? (30 minutes after being in sleep mode).
View 3 Replies
View Related
Jul 30, 2010
I have a task killer and I assume it's killing a process that syncs for new emails [I've set it to auto update every 30 min] and even when I open the app it does not refresh till I manually press refresh. Which process exactly should I put on the ignore list so it will not kill it.
View 1 Replies
View Related
Oct 17, 2010
My phone seems to work ok, but all of a sudden it wont bring up the screen to shut dn? Whats up?
View 2 Replies
View Related
Feb 9, 2014
For some reason whenever I now use the keyboard on my LG 4X HD the phone says aloud the key I'm pressing. I don't even know what it's called, perhaps "keypress vocals"? Can't find where to switch it off or even turn down the volume, which is really loud, very annoying as it does it even when the phone is on mute. Searched the settings, no luck. I'm going to be travelling a lot on planes and trains in the next few weeks and I really don't want people listening to what I type. I think on some forum somewhere mentioned that it could be a Driving Mode setting, but I can't find that anywhere either.
View 2 Replies
View Related
Mar 26, 2012
my phone shuts down, dont know exactly when becouse i hear the sms geting in but some times i dont open then, only after some times i get out the phone of my poket and it is off but i ever pas when its loket, never when i am using it.
View 3 Replies
View Related
Aug 31, 2010
So i was trying to use cyanogen. i guess i forgot to clear caches and I'm stuck on the startup screen. i cant do anything to it..
View 4 Replies
View Related
May 2, 2010
I have gotten all haptic touch set to off so it no longer vibrates when texting, emailing or touch the 4 lit up buttons on the bottom BUT it still vibrates when I dial a phone number or when I call a contact from my phone book, I hit the number and it vibrates once as it rings
View 1 Replies
View Related
Jun 1, 2010
IF i want to turn the phone off it will go to shutting down and continue to do this for hours the only way to sort this is to remove the battery, is there a fix or is anyone else having this problem ? this hard core shut down cannot be doing the phone any good.
View 7 Replies
View Related
Dec 15, 2009
All of a sudden I cannot shut off my home page screen. If I quick press the end button nothing happens; I have to wait a minute for the screen to blacken on its own.Is there a setting to change it back to the way it was before?
View 1 Replies
View Related
Aug 3, 2010
I do need to restart phone sometimes to make sure my internet works. Is there any app available which can help me doing that and maybe to switch-off phone as well? I do use hardware key currently, but want to minimize the usage for better longevity.
View 1 Replies
View Related
Aug 5, 2010
Bought the Captivate on launch day. I had problems with the battery, phone restarting by itself, buttons at the bottom would not register when pushed. Took that Captivate back yesterday and exchanged it for a new one. The new one I got works much better. Little to no lag, buttons are working properly, and the battery is much better. Used it until about 3% of battery was left then put the charger in. Fully charged by midnight, unplugged it and went to sleep. Woke up this morning to find out the phone shut itself off last night. I woke up and tried to check my emails but the screen would not turn on. Held the power button and the phone turned on as if it was just starting it up. I bought my phone from a authorized AT&T reseller so I'm hoping they'll let me exchange it for another one again.
I called Samsung tech support but they weren't much of a help. They said I can send it in for repair or take it back to where I got it for another exchange. My phone is not rooted and not tampered with in anyway. I downloaded all the same apps for it which were only about 6 so far. The only new one I did download was one of those Sense Digital Clock ones and put the widget on my home screen. Other than that the phone is set up just like my previous one. I deleted the Sense Digital Clock app so maybe that was the culprit? I really do not want to take this one back again as the one shut down is the only problem. I'm going to wait a couple days to see what happens. My 30 days are up on the 17th so if it keeps on shutting down I'm taking this one back.
View 3 Replies
View Related
Feb 4, 2010
when you put the phone up to your face while talking i know it has the sensor that shuts off the screen, my question is does anyone else seem like it hesistates a while after you take the phone off your ear? If i call a number that requires me to enter numbers it seems like it takes a good 3 or 4 seconds for the screen to turn back on. I know it doesnt seem like a lot but some of these calls if you dont enter the number right away they start asking questions over then i do hit a number and its the wrong one so its a pain in the a$$. I came from a palm pre which was virtually instantaneous once i took the phone off my ear. So i guess im wondering if this is a problem with just my phone or all moments and is there a fix for it?
View 9 Replies
View Related