Android :: Service Self - Restarting / "mission Critical"?
Nov 1, 2009
I am developing a slightly "mission critical" Android application, and want a Service component of it to be essentially "immortal" or at least "self-restarting" in the event of a crash (of the service). What would be the best way to accomplish this? I use API level 3 (Android 1.5).
View 3 Replies
Nov 12, 2009
Is there a way to prevent your service from restarting if it crashed?
View 7 Replies
View Related
Aug 12, 2010
The phone has been uplugged for 19 hours now. Awake time is 2 hours. Battery is at 50%. This is with texting, a few phone calls, using the application store a few times, reading and updating my status. I have had the phone almost a week and I have been on a mission to get great battery life.
View 2 Replies
View Related
Oct 17, 2012
I put chrome in system/app in my rom and I got problem to start chrome. it says missing critical functionality.
I get FC with go keyboard when putting it in system/app.
Everything goes find after I put them in data/app.
View 4 Replies
View Related
Apr 10, 2014
I own a ZTE v970m and I am running superdragonpt's [WIP] [JB 4.2.2] ZTE v970/v970m (MT6577) ROM. I was running bgcngm's ROM before I flashed this one.
With some ROMs I've flashed (including the current one) my phone somehow stops shutting down automatically when the battery reaches <1% (btw I still get the Low Battery warning at 15%), what happens is that, when it runs empty, suffers a hard shutdown (duh) and when I put it charging and I try to turn it on (even hours of charging later) I get a black screen (attachment) with a battery icon, some green bars and a hourglass. And a Bolt (no pun intended)
I really wanna stay with this ROM, so another 4.2 ROM for this phone.
Just remembered the red notification light switches on/off from time to time 30s-1m(maybe)
View 4 Replies
View Related
Nov 10, 2009
I may be blind, but I can't find a way to type a "?" or a "|" I may be able to forgive the latter but what the heck on the "?" I figures at least it would be in the ALT-SYM menu, but it's not there either.
View 4 Replies
View Related
Aug 6, 2010
I've just uploaded Version 1.1 to the Android Market which adds support for large screen sizes. You can also pick it up at the Mobihand App Store: Mobihand App Store
Critical Altitude 3D is an Accelerometer based third person flight game featuring real-time 3D graphics (OpenGL ES). Race through endless levels avoiding buildings and various obstacles to earn a highscore!
- OpenGL ES for true 3D real-time graphics
- Accelerometer ( tilt the device ) for Up/Down and Left/Right steering
- 4 Planes to choose from with different speeds and point rewards
- Planes unlocked based on Highscore...
View 7 Replies
View Related
Sep 27, 2010
Several apps on my epic are always on. After I end them using atk if I wait say 10 minutes they start again. Not all are bloatware some are apps I use from time to time but I don't want them to run all the time.
View 1 Replies
View Related
Mar 13, 2010
I have a TabActivity, each tab holds an activity. At some point I'd like to 'refresh' the tabs. I'd basically like to restart each activity in the tabs. I'm not sure how to do this. Calling:
CODE:.........
Removes the tabs, but the activities still seem to be in alive, in limbo. How can I get them to really quit?
View 2 Replies
View Related
Feb 17, 2010
So I wanted to use Media Players to play two different songs, and I wanted to always start a new song from the beginning. This could be unrelated, but I also just suddenly ran out of internal flash space when I hadn't just installed anything. I'm not sending a bunch of unreferenced Media Players to a page file or anything, am I?
View 7 Replies
View Related
Sep 10, 2010
I have an activity that after some user interaction calls finish() on itself. From time to time it gets into a loop where when it calls finish() it finishes but immediately restarts again. Any idea why android tries to restart my activity?
View 3 Replies
View Related
Mar 10, 2010
I was wondering if anyone knew how to restart LogCat without rebooting eclipse? Every once in a while LogCat will just die while I'm working and it seems like there should be a to get it working again. I've tried restarting the adb task, but that was just a haphazard guess at a solution.
View 4 Replies
View Related
Mar 12, 2010
I have a TabActivity. Each tab points to a sub activity. Works great.
Is there any clever way to refresh one of the activity tabs? I just want to 'restart' the activity in tab #3 for example. Not sure of a good way to do this other than building in refresh support to the activity itself, or clearing ALL the tabs and recreating all of them.
View 1 Replies
View Related
Jan 28, 2010
I have a service which holds on to a wakelock and the code is similar to this,
public class WakeLockService extends Service {
PowerManager.WakeLock wl;
@Override
public IBinder onBind(Intent arg0) {
// TODO Auto-generated method stub return null;
} public void onCreate() {
PowerManager pm = (PowerManager) getSystemService (Context.POWER_SERVICE);
wl = pm.newWakeLock (PowerManager.PARTIAL_WAKE_LOCK, "My Tag");
wl.acquire();
} public void onDestroy() {
wl.release();
}
For past two days, my phone has been restarting randomly. Today it was worse, it kept restarting until I uninstalled the app. I tried to search about this behaviour online and found that too many wakelocks may coz the phone to restart. Can there be any other reason? Is the above code right? Should make wl as a final variable? Does the service call onDestroy method when phone shuts down? I am using a broadcastreceiver to start my service at boot up as well.
View 8 Replies
View Related
Apr 6, 2010
I am making an Android game with an Activity called Game, a SurfaceView called GameView and a Thread called GameThread. The Game's onCreate(), I make a new GameView, which makes a new GameThread, where all the game logic and canvas drawing is carried out. However, I'm having some lifecycle difficulties. When I press back and restart it, it works fine, but when I press home and restart it, all I see is a blank screen. Here are the GameView's onSurfaceCreated() and onSurfaceDestroyed(): @Override public void surfaceCreated(SurfaceHolder holder) {
mThread.mRunning = true;
mThread.mWidth = getWidth();
if(mThread.mWidth > 550) mThread.mWidth = 550;
mThread.mHeight = getHeight();
try {
mThread.start();
} catch(IllegalThreadStateException e).......
View 1 Replies
View Related
Mar 10, 2009
I want my application to resume what it is doing regardless of where I press the icon (Home screen, app picker, or running apps). Right now if my app is in the background and I press the icon on the home screen, the app restarts with my Main Activity. Once here, if I press the back button the app resumes from the activity it left off before it was put in the background. If it's running in the background and I hold the home button and select my app from the current running apps, it resumes correctly. How do I avoid my app from going to my Main activity when it is selected from the Home screen or app picker? I have tried adding the following in my Manifest XML file, but it doesn't help: <activity android:name=".Main" android:launchMode="singleTask" android:alwaysRetainTaskState="true" android: label= "@ string /app_name">
View 5 Replies
View Related
Nov 13, 2010
I have my android:screenOrientation="portait" on but when a physical keyboard is opened it doesn't rotate the screen as I wanted, but it restarts the app. It seems to run onCreate over again or something. Can someone point me in the right direction and/or tell me how to intercept this and handle it?
View 2 Replies
View Related
Jun 7, 2010
I have an Android Activity with a RelativeLayout and I have implemented the following method to prevent the activity from being recreated on change of Orientation:
CODE:..............
I am obviously not doing anything in this method, but it worked perfect when using a LinearLayout. Now however, using RelativeLayout, my layout is all messed up when changing to landscape orientation.
What is the most efficient way to have the screen redraw correctly without having the activity restarted again with a call to onCreate?
View 2 Replies
View Related
May 19, 2010
I start a number of background threads in my Activity onCreate that do work to keep the UI free. I was originally destroying these threads in onDestroy. However, the idea of shutting down and restarting these background threads every time there is an orientation change seems like a waste of time to me. What is the preferred way of avoiding the shutdown of my background threads on an orientation change? I supposed I could set a flag in onSaveInstanceState and then not destroy my threads if this flag is set. Is this a valid approach or is there a more standard framework approach that I am overlooking?
View 6 Replies
View Related
Aug 11, 2009
when i open my keyboard, it restarts the activity. i use only landscape mode and dont want the activity to restart.
View 2 Replies
View Related
Nov 19, 2010
This problem has only risen after installing the android 2.1 upgrade. i have tried reinstalling the upgrade but the problem has not been resolved.
View 3 Replies
View Related
Jul 28, 2010
Whenever I am on my home screen for more than a couple of seconds, the green HTC shows up then I get the loading pop up while my widgets load. then if it stays there for a while again it keeps doing it.
View 4 Replies
View Related
May 12, 2010
The past two days my INC has randomly restarted itself. Any ideas as to why? I just got the thing Saturday and of course downloaded a ton of apps, but that had never happened. I think the first time it happened was yesterday. Only app I recently downloaded that may be causing the problem is Toggle Settings. Has there been mention of that causing problems at all?
View 10 Replies
View Related
Apr 9, 2014
I have used TheSun mobile app on my acer liquid metal for sometime now , however the past two days i havent been able to login to use the app , as soon as i try to type my password the app restarts itself making it impossible to enter password , i have tried restarting my phone , uninstall app, but i still cant log in.
View 7 Replies
View Related
Jun 24, 2009
I have a service running in the background.I have a background thread that gets a reference to the service from the application's main activity. But when the background thread calls a method in the service to display a toast, I get the "Looper not initialized exception".Why,if I have a valid, bound reference to a Service, does this still happen?
View 4 Replies
View Related
Sep 16, 2010
My issue is with Facebook service, it keeps restarting. Each time I go into Running services, it shows it again, When I forcestop it. It will restart 5 minutes later or so. I've gone into facebook and turned off notifications and everything. It's been draining my battery, wondering if you could shed some light? I don't want to use a task killer, had issues with it in the past. I also do not have a facebook widget on any of my scenes
View 3 Replies
View Related
Aug 28, 2010
I had Launcher pro on there , but as much as a liked it , it wasn't as snappy as id liked it too be . But now that i have gone back to sense , hitting home restarts sense reloading all of my widgets for about 20-30 sec.
View 9 Replies
View Related
Jun 23, 2010
I have an HTC desire with Orange in the UK and up til now it's been pretty fantastic. For the last couple of weeks though, it goes through fazes daily of just switching off mid-use and restarting 5 or 6 times in a row. Sometimes it boots up fully before restarting, sometimes it cuts out mid start-up and goes again....it's rather annoying as I'm sure you can imagine!
View 3 Replies
View Related
May 2, 2010
After surfing for a while, the browser occasionally has some issues.For example,I'll tap on a button on a form, and nothing will happen.Or I'll do a search, tap go, and no search happens.Powering the Incredible off and on fixes these issues.Is there a faster way?After having the phone for several days longer, I can say that this hasn't happened in days. Not sure what the issue was initially, but lately browsing has been rock solid.
View 5 Replies
View Related
Jun 27, 2010
Anyone encounter yr phone keeps on auto restart by itself, if so can share yr experience and how u solve this. Been headach as I can't do a soft an hard reset or even wanna do back factory setting.
View 2 Replies
View Related