Motorola Droid X : Close On Exit - Leaves It In Memory Running
Jul 15, 2010
Just got the new Droid X. Coming from a windows mobile phone (which I hated) I have a question on the android OS. It seems that when you are done with an app you just have to hit the menu button again.. but this leaves it in memory running.. is there anyway to close the and and just leave it? I did download the Advanced app killer but that seems silly to have to pick from a list of what you want closed.. I see no way to just close the app you are in.. it should be a default option for every app.. I hope I am just not finding it.. and it is there somewhere..
View 7 Replies
Apr 4, 2010
Why don't apps on Android have Close/Exit? I never know if an app is truly turned off. Internet is perfect example. If I have navigated down a series of web pages and hit the return button, when I reopen the internet it's on that last page as opposed to the home page.
View 4 Replies
View Related
Nov 14, 2010
how the memory works on my orginial motorola droid (2.2). When I open the running services tab I see this on the bottom:
Other: 54MB in 3 Avail:19MB+45MB in 7
I'm wondering if someone can explain what this means. I assume this is all coming out of the 256MB of Ram the droid has? I was also installing app's and got a memory low warning aftering firefox beta that was 14MB in size. I gather that almost all the apps do not support installing to the SD card yet if ever. So of like the 100 apps I have installed is it likley that they are all taking up room of the RAM of the 256MB? I'm also wondering if there is a good app that shows you how much of your RAM is full with apps, so you know when you need to uninstall some etc. Like you are using 200MB out of 256MB or whatever.
View 3 Replies
View Related
Nov 24, 2010
the problem is that this button doesn't exit of my app... it simply closes the current intent ant returns to the previous intent (window) of my app.... how i can do a real exit/close button? i tryed with this:
Intent intent = new Intent(Intent.ACTION_MAIN);
intent.addCategory(Intent.CATEGORY_HOME);
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
startActivity(intent);
but it doesn't works, because when i turn back into my app, the app comes in the last opened window, and not in the first window of the app, how i can do that? i need that when i re-open my app it starts on the first window of my app
View 5 Replies
View Related
Aug 10, 2009
i want to add an exit button to the menu, but didn't see an easy way to close an application or acces all activities of an application and finish them. Is there an easy approach available?
View 11 Replies
View Related
Apr 18, 2010
Is it possible to stop all started services when the user hits the Home Button? I use:
startService(new Intent(ClassName.this, ClassName2.class));
stopService(new Intent(ClassName.this, ClassName2.class));
This means I will have to somehow add the 'stopService()' for 7+ of my app classes
I've researched this topic and I think there's 'onTerminate' but still not sure how this should be implemented.
View 2 Replies
View Related
Oct 17, 2010
I notice that my application continues to run in the background after I hit the home or back button. I tried calling the finish() method and it still says its running. On another note, how do I setup the keyListener to respond to the user hitting the back or home button. I tried implementing OnKeyListener and using findViewById(R.Layout.main).setOnKeyListener(this) to call finish().
View 1 Replies
View Related
Nov 8, 2009
Is there a button you can hold to completely exit a app while you are in it so it doesn't run the background, I don't like having 12 programs running all the time.
View 14 Replies
View Related
Feb 7, 2010
This is my first time here and I picked up a Droid last Friday and have already learned a lot about this phone. One problem I would like to know is how do you exit web pages without turning the phone off? When I hit the browser icon, it takes me back to the last page which is still open and I don't know how to close them.
View 3 Replies
View Related
Jul 22, 2010
I don't know if this is possible on the X, but how do I calibrate the touch screen? I've noticed two things that are beginning to drive me crazy. The first is that it is so sensitive at times, if I pass my finger over a button without actually touching the screen, it thinks I pressed it and executes the function. Second, I noticed that the spot I touch actually is off a bit so when I try to hit a link from a list (such as a thread here) it will pick the one above it.
View 5 Replies
View Related
Dec 28, 2009
Is there a reason some apps won;t exit,quit,end? Or is it poor design. Currently I have seesmis and sportstap which I cant seem to terminate. I like the apps but just dont want them to keep notifying me.
View 6 Replies
View Related
Jul 19, 2010
they are splitting the company. The making of wireless-telecom equipment is being sold to Nokia Siemen's Networks. Does that concern any of you who just purchased the Droid X?
View 3 Replies
View Related
Aug 5, 2010
Whenever i press the home key for 2-3 secs. i see the task manager which shows me 6 last apps running. How do I close them so they don't take up memory etc. ? Sometimes Wildfire gets slower. Any quick tips etc. to make it silky smooth in running also ?
View 17 Replies
View Related
Nov 19, 2010
I'm trying to use explicit intents (invoking an Activity by another Activity) in Android 2.2 but each time i click on a button in order to invoke another activity i get the following message:"Sorry! The application [app name] has stopped unexpectedly. Please try again"and I have a button of "Force close".Does anyone know how to solve this problem?
View 1 Replies
View Related
Sep 2, 2010
It seems that with Froyo 2.2 i get a lot of new apps. problem is these new apps can't be shut off.
things like Skype, amazon MP3, City ID ... etc. my battery has dropped significantly since 2.2 and i think it's because of these many new apps running in the back ground. anyone know how to stop these apps from running?
View 3 Replies
View Related
Jun 9, 2010
I tried to retrieve user's gmail address on Android phone using AccountManager.get(this).getAccounts(), but got force close when running the code in emulator (platform 2.2, API level 8) and Motorola Droid handset. Do I need any user-permission in manifest file? what else I might be missing?
View 2 Replies
View Related
Oct 15, 2010
I'm writing a graphic design application for Android where the user can add several images to a document, where each image is stored as a Bitmap object. Each bitmap has roughly a dimension of 800x400 pixels and uses ARGB8888 pixel format (i.e. ~1.5Mb each).
I'm aware that most of the first generation Android devices have a 16Mb heap limit and this limit is 24Mb and larger for newer phones. I'm also aware that bitmap memory is allocated externally, but I'm confused and what the implications of this is.
My question is: How can I tell at runtime when adding a new Bitmap will get me too close to the memory limit?
Before someone suggests "don't use that much memory", I know that one option I have is to limit how many Bitmaps the user can create such that I know this limit is safe for the most basic Android phones. However, I'd like for phones with a bigger memory limit to support more bitmaps and/or bigger bitmaps.
I know to check for OutOfMemory exceptions when allocating bitmaps. However, there will be some situations where I've only got just enough memory left to allocate one more bitmap. After this point, the whole application will be unstable because even allocating small things like strings could cause an OutOfMemory exception. This is something I want to avoid.
I'm not sure how to define "too close to the memory limit", but I suspect something like "don't allocate more than half of your available memory to bitmaps" would work OK as my other data structures I store in memory are small in comparison.
View 3 Replies
View Related
May 21, 2009
My application starts a remote service and binds to it. If I close the application with the "back" button there are still some threads running (listed in the Debug View of Eclipse) - main thread, and three Binder threads. In onDestroy() I call unbindService(service_connection) - is there something else to clean up?
View 4 Replies
View Related
Dec 21, 2009
Just wondering if turning off your phone, closes all of your running apps....
View 8 Replies
View Related
Feb 15, 2014
Swiping to close each app all the time is inefficient for me. I realize other people might not want this but I want whatever app I was using to completely close when I tap the home button. There is one app that puts an X on your homescreen that closes everything when clicked. That is a little better but I want to go one step further and have the home button do the same thing. Is there anything out there for that?
View 5 Replies
View Related
Jul 21, 2013
How to fix the MMS issue with MIUI V5 on the HTC One XL(AT&T version). I noticed that the One S has a fix, however I can't figure out what they are saying about replacing the framework files and what not. If your not familiar with the issue, trying to send/receive MMS causes the messaging app to force close.
View 3 Replies
View Related
Jun 15, 2010
Sometimes when I'm reading comics on this app it will tell me that I've run out of memory and I cannot read any further. I've tried killing apps in the background but nothing works other than letting it sit for a good while.
View 4 Replies
View Related
Feb 2, 2009
I am running a script that runs randomly the browser and music.After 7-8 instances of browser getting opened I see the following error :-
CODE:........
Is it possible to open the browser windows consecutively for 10 mins.Secondly why does the background process get killed?
View 2 Replies
View Related
Sep 12, 2010
My phone storage on my HTC Desire seems to be permanently full up, I know there's things like the Internet cache and contacts that are growing all the time but I should still have enough room for other stuff. I've installed and moved all apps to my sd card, I only have 35 or so and there all fairly small little apps but I use them all.
Yet I am always getting the phone is running low on memory message, so I cant install anything from the app store. Thing is I still have 11.55 mb of phone memory but I feel I should have loads more, there's only really a few things taking up memory from what I can see in my apps because everything else is on my sd card.
Contacts Storage: 17.34mb
Flash Player 10.1 : 12.39mb
Maps ; 7.75mb
Swype: 5.96mb
Facebook: 3.80mb
Voice Search: 2.57mb
HTC Sense : 2.30mb
Internet : 2.39mb
Everything else is all really under 1mb. Is there some other files or something lurking on my phone memory that shouldn't be there?
View 11 Replies
View Related
May 13, 2010
I just got my Incredible a few days ago and I'm still learning it. So far its much better than my old Blackberry. I just have a question as to if this is normal or if I have a defective phone. When I got into running apps under settings its shows on the bottom (the numbers of course vary) Avail: 64+219 in 25 and Other 60mb in 4. As soon as I open then browser and go back and check it goes to Avail: 58mb+0.00b in 25 and Other: 0.00b in 4. I checked my fiancee's Moto Droid and it isn't doing this. Is it normal with the Incredible or is my phone defective?
View 9 Replies
View Related
May 10, 2010
I've been working on an Android app in Eclipse, and so far, my program hasn't really grown past midget size. However I've already run into an issue with an Out of Memory error. You see, I've been using graphics comprised solely of bitmaps and PNGs in this program, and recently, when I tried to add a little bit more functionality to the program (mainly including a few more bitmaps and causing an extra sprite to be created), it started crashing in the graphics thread's constructor -> sprite's constructor. When I tracked the problem down, it turned out to be an Out of Memory error that is seemingly caused by adding too many picture files to the program and creating Drawables out of them.
This would be a problem, as I really don't have that many picture resources worked into that program...maybe 20 or so. I haven't even started to include sound yet. These images aren't all that fancy. My questions are this:
1) Are programs for the Android phone really that limited on how much memory they can employ, or is it probably something other than the 20-30 resource pictures causing that error?
2) If the memory for Android apps is so awful it can't even handle 20-30 picture resources being loaded into Drawables that exist at the same time, then how in the world are you supposed to make decent graphics and sound for that thing?
View 4 Replies
View Related
Sep 1, 2009
I have been trying moving applications to SD card but failed when I go to terminal and use CP command. Is anyone done applications to SD card and if yes how can somebody share some details please. A to Z. My hero is already root, just running out of space on my internal memory. Its sad that HTC don't allow to put applications on SD. Love to have an option to ask where do you want to install the apps?
View 7 Replies
View Related
May 3, 2010
When I first boot up the phone and check the memory (after shutting down all the apps I don't want running) I notice my phone has about 220-250 MB free after leaving the phone on for about 2-3 hours, with no activity on my part, that number gets smaller and smaller. I just rebooted my phone again because it was down to 125 MB free with no applications running.
Also, "Android System" is consuming 65% of my battery life. I realize that number is inaccurate after a fresh reboot so I played with the phone for a good 4 hours running apps and such, so that I could get a good test of how much the OS is eating up in comparison to other apps. 65% is a bit much no?
View 6 Replies
View Related
Feb 3, 2010
My application loads 12 100x100 thumbnail images from the web using the code below. I then display the thumbnails in a GridView using an ImageAdapter derived from BaseAdapter.I'm running into memory issues because each of the thumbnails is held in memory as a Bitmap. This seems like a fairly straightforward application (display a gallery of thumbnails from the web), can some give me advice on how to reduce my memory needs? Maybe there's a better way to display web images in a GridView that doesn't involve downloading and storing each one as a Bitmap?
View 4 Replies
View Related
May 29, 2010
We have a info bar at the bottom of the following menu: Settings > Applications > Running Services
Avail: XXXMB+X.XXB in XYZ_____________________Other: X.XXB in XYZ
Is anyone able to explain what XXX and XYZ are please? I am guessing XXX = memory taken up and XYZ = number of processes?
But it doesn't make sense to say: Avail: 32MB + 0.00B in 31 processes
What are considered 'good', 'bad' and optimal figures here?
View 3 Replies
View Related