The method is called when activity or the service is being killed. The more information could be found here.
5
votes
3answers
774 views
Android Activity Life Cycle - difference between onPause() and OnStop()
how does these two methods differ because both are in fact very similar and the instance itself is not destroyed while they go into these two methods as they are intermediate methods before the final ...
5
votes
1answer
951 views
Android: Order of statements in onDestroy() method
If I override my main Activity's onDestroy() method in order to recycle a bitmap when the screen is rotated, should I call super.onDestroy() before or after myBitmap.recycle()? Does it matter?
3
votes
1answer
121 views
Android: Activity.onDestroy() is not called when Dalvik kills this Activity
I'm confused about Activity.onDestroy(). I need to free some resources when my Activity is destroyed, but it seems like onDestroy() is called just when i press "Back" key, but not when my Activity is ...
3
votes
1answer
1k views
Android - is onDestroy supposed to destroy the activity, its variables and free up memory
I have a bug in my code that made me think I don't fully understand the Android Lifecycle. Yes, I have read all the docs and looked at the diagrams, but they seem to talk only about when to save data, ...
2
votes
2answers
81 views
CountDownTimer wont let me call onDestroy
I have made and simple countdown timer app, but when i try to make onDestroy to cancel countdown timer i get and error.
My onDestroy codeblock:
@Override
public void onDestroy()
{
...
2
votes
2answers
145 views
How to properly implement onDestroy method?
I'm developing an android application and i'm almost done, and in order to have a good application i wanted to know how to properly implement the onDestroy method, i mean do i have to call the garbage ...
2
votes
2answers
632 views
is there an Application::onDestroy() equivalent for Android?
Hi I am using the Application::onCreate to put my initialisation code of my app, but when waiting some time and starting other apps, I noticed the instance of the Application class gets created ...
2
votes
2answers
567 views
What exactly does onDestroy() destroy?
I've been bothered by this "characteristics": When I use Back button to leave my app, I can tell onDestroy() is called, but the next time I run my app, all the static members of the Activity class ...
2
votes
1answer
426 views
How to distinguish whether onDestroy will be called after onPause
Is there any way how to distinguish whether onDestroy() will be called after onPause()? In may activity I need to do different action when Activity lost focus and when Activity is going down, but even ...
1
vote
1answer
70 views
Recycling attributes from destroyed activities?
I have a doubt about destruction of activities and objects.
While I attach & detach the activity from the AsyncTask I do not change the ArrayAdapter from the asynctask (see code). So, what I get ...
1
vote
2answers
55 views
Android Thread interupt when activity destroy does not work
I'm new to android developing. I have an activity where I create a thread to load an image and refresh it on imageView. The thread runs an "infinite loop". I want to also stop the thread when the ...
1
vote
2answers
407 views
Android service onCreate is called multiple times without calling onDestroy
In my app, I use a service to communicate with our server. The service spawns several message queue threads to deal with tasks with different priorities.
This model has been used for about one year ...
1
vote
1answer
388 views
onDestroy gets called each time the screen goes on
my application gets killed each time it comes back from the screen-off-state. i fetch all the informations which my app does but i can't find out why it calls onDestroy. It's the first time i see this ...
1
vote
3answers
108 views
Android: How to disconnect when user presses home but not on screen rotation?
I am working on an application that maintains a connection for several purposes, such as publishing an receiving location updates. As per the android way of doing things and advice from other answers ...
1
vote
1answer
240 views
Android - Tell if parent activity has been destroyed
So, I have written an app that has a Main activity (A), and various other sub-activities that all do something, report the work back to main, and finish.
What I am running into is that if the user ...
1
vote
4answers
1k views
android : Does onDestroy() or finish() actually kill the activity?
Actually I know i am asking about the simple and basic concept of android. But I am a little bit confused about these finish() and onDestroy() mehods.
Whether this will kill the activity and free the ...
1
vote
2answers
568 views
Can I detect when my service is killed by “Advanced Task Killer”
My app runs a geolocalisation service that the user can active or disactive by a toggleButton. To check the status of the service, I write a boolean in the Shared Preferences. I listen the beginning ...
1
vote
4answers
97 views
Service that works right for few hours, than no more response
I want to run a method CippaLippa() in the GmailService class when I receive an email in Gmail client.
I've a receiver and a service in AndroidManifest...
<receiver
...
1
vote
1answer
381 views
Delphi Frame Destroy/Hide
HI
I have an application with more than one frame that act as forms.
I have temporary files I need to delete when the user moves from a certain frame and I currently delete the file when they press ...
1
vote
2answers
443 views
How to restart a killed service automatically?
When a service has been killed, how to restart it automatically?
sometimes without even calling onDestroy()
1
vote
1answer
1k views
call method when program exits - onDestroy not reliable
I want to execute some functions when the program is exited by hitting the back button.
This is now done by onDestroy() which works in every case but one. When coming back from another activity in ...
1
vote
3answers
3k views
OnDestroy never called?
friends,
i am using following code in my ListActivity
// a seperate class in project
public class MyActivity extends ListActivity {
//some common functions here..
}
public class ...
0
votes
1answer
24 views
Android - Losing scope on UI elements after onDestroy()
I am trying to handle problems that occur in my application when the phone is plugged into certain types of chargers and put into "Car Mode" or "Driving Mode".
In the running application, onDestroy() ...
0
votes
1answer
39 views
onDestroy() is getting called after onPause()
I am implementing paint Application. My problem is that when i color on object.After some times screen goes to sleep.When i awake the screen, my old paint lost. I find out issue its calling OnDestroy ...
0
votes
0answers
15 views
Save unsaved and release resources in onStop, onPause or in onDestroy?
I am confused as where to save unsaved data and release resources taken by my app. I read that I should save unsaved state in onPause and to release resources used by my app in onStop. I also now that ...
0
votes
1answer
32 views
Do thread clean-ups when a service is about to be killed in Android
When a service's onDestroy is called due to low memory, in the method, should I do something like telling the worker threads that they should end their work and then wait them to exit before letting ...
0
votes
2answers
27 views
Android: call Service's super.onDestroy() outside onDestroy()
I have a Service which is playing music. I've implemented fade out like this:
@Override
public void onDestroy(){
volume=1.0f;
fade_handler.post(fade_out);
super.onDestroy();
}
This is ...
0
votes
1answer
53 views
Android: screen rotation, on destroy and services connundrum
I've modified the bluetooth chat example from the SDK demos to be able to control an arduino powered bluetooth LED matrix. Using the chat program, I can send messages to the display via bluetooth. ...
0
votes
1answer
86 views
Memory not clearing when exiting app
I have looked through a few articles around and notice that sometimes onDestroy() is not called when an app is exiting. Sometimes only the onPause() is called. My whole thing is that when I exit my ...
0
votes
2answers
169 views
Clear “Cache” onDestroy
What I try to do
I'm building a application for my Channel. I get the data over the JSON from google and fill that into my ListView over the SimpleAdapter.
That I can show the pictures in my ...
0
votes
3answers
94 views
Why is onDestroy() method called?
My app has 3 classes. First class is a splash screen, second class contains a list of playlists and third class that playlist's content. When a playlist is selected that third class get started to ...
0
votes
1answer
61 views
ListView won't update
When I run my class the list view is populated with one song the first time but since then I have add songs and they won't add to the list view only the first one is there. I think that my activity is ...
0
votes
1answer
69 views
Android: after resuming from onDestroy() , an onclicklistener is not responding
I don't know if these are related yet, but I have an app that won't let me click one of the buttons after resuming from onDestroy()
is this a known issue? the listeners are set onCreate()
and never ...
0
votes
2answers
86 views
Android App Exits when Going into Background
Ever since I added a new Class to my Android app (specifically, a sqlite helper class) may app wants to relaunch after I press the home button. Before adding the class, the app would multitask as ...
0
votes
4answers
226 views
Android save state before ondestroy() [closed]
Possible Duplicate:
Android: Saving a state during Android lifecycle
i want to save some values in a file before the user terminates the activity.In which method should i implement this?
...
0
votes
2answers
59 views
Best way to close and shutdown objects in onDestroy
Inside the onDestroy method, whats the correct way to determine if an object was actually initialized before trying to close it/shut it down/etc.
For example, which is better:
protected void ...
0
votes
3answers
98 views
How to destroy my application?
My application is always showing in Task Manager when I exit from my application. How do I destroy it? I used the onDestroy() method, but still it is running. I am using alarm manager and some ...
0
votes
0answers
188 views
Dialog prevents onDestroy for grandchild Activity
I have a set of 3 Activities; Menu, Game and Map. When the play game button is pressed in Menu, Game is started. In Game.onResume, Map is automatically started for result. Pressing back in Map ...
0
votes
1answer
37 views
Closing WordDBAdapter in onDestroy
I need to close my WordDBAdapter object in the onDestroy method in Android. Is one of these better than the other?
@Override
protected void onDestroy()
{
super.onDestroy();
if(dbWord ...
0
votes
1answer
391 views
Android- Resuming Service in Activity and destroying them on destroy
I currently have an Activty that when created starts and binds with a service. This service has a mediaplayer. What I would like to do is if the activity is resumed then the service keeps playing, ...
0
votes
1answer
77 views
How to distinguish whether onDestroy() is called as part of configuration change sequence?
In my Activity some external thing (service) need to be destroyed in onDestroy(). But I do not want this when configuration change happens (e.g. keyboard flips out) because it will be restored right ...
0
votes
1answer
140 views
Android- Destroy media player service when click on item in Listview
I currently have a listview and when you click on an item it runs a service with a mediaplayer. If I click on another item in the listview the service that's running should stop and run the new ...
0
votes
1answer
231 views
Where to call DestroyWindow() of an MFC dialog?
I'm curently working on dialogs in an MFC application and I'm – admittedly – quite new to MFC.
Let's say I have class A (derived from CDialog) that uses class B (also derived from CDialog). Thus, ...
0
votes
3answers
380 views
Back Button on exit creating a Force Close Error
I am trying to avoid using onDestroy and want to keep this as simple as possible, but when I exit the program, I get a Force Close error. Not sure why. Here is the code for the main part of the ...
0
votes
2answers
512 views
androi : Not to call onDestroy on onBackPressed
I don't want my acivity to get destroyed when Back button is pressed. My app is compatible from 1.6 SDK's. Referring to ...
0
votes
1answer
333 views
Android 2.2.1, Orientation Change, and onDestroy()
I have a really heinous bug that I'm trying to track down and I've got the following situation.
Here's my scenario, I launch an activity, I change screen orientation to landscape, I change it again ...
0
votes
1answer
781 views
Is it okay if we override OnDestroy() method in every activity of Android Application?
Is it okay if we override OnDestroy() method in every activity of Android Application?
@Override
public void onDestroy() {
super.onDestroy();
}
Just by calling super.onDestroy() in ...
0
votes
1answer
685 views
Dynamically registering a broadcast receiver
I registered my broadcast receiver like this(given below) in the manifest file. its working fine.
<receiver android:name="MyIntentReceiver">
<intent-filter>
<action ...
0
votes
1answer
121 views
Dealing with threads
What is the proper way to manage threads working in the background?
For example, I have Activity that creates several threads. I need to do following:
1) Destroy all threads when Application is ...
0
votes
2answers
515 views
Android: service destroyed when display is rotated
I've got a service that is running in a separate process. I'm finding that after the main process UI thread exits from onDestroy() that my service is being destroyed even though I've provided the ...