Tag for questions related to Android's onDestroy() method of Activities and Services.

learn more… | top users | synonyms

-1
votes
1answer
35 views

AsyncTask in onDestroy() not being executed

I want to send logout information to server, when the app gets destroyed. Actually, everything is ok with the logout function, it works fine when user tries to logout manually from activity's menu. ...
0
votes
0answers
8 views

Fragment onDestroy/onRecreate Crash Issue

Having a issue with my app crashing I cant get to the bottom of on my own, my entire app works fine besides when I leave my phone alone for a while with the app open and then wake up my screen OR I ...
0
votes
1answer
45 views

Why won't my android program close when I close it?

I made an android app that plays the mario sound when you jump. It works fine (sort of), but when I close it, it still works. I tried using the onDestroy method, but it dosen't seem to delete the ...
2
votes
1answer
60 views

Fragments remain after Activity get's killed and recreated

I have a FragmentActivity (Support Fragments) where I create Fragments by code and put them into FrameLayouts. It all works fine so far. Now if I leave the App an return everything is fine as long as ...
0
votes
0answers
9 views

Detect ActionMode nesting

I use some custom ActionModes in my application. When an action mode is closed, I do some housekeeping, like closing related views, updating changes, etc.. I detect the action mode has been closed in ...
0
votes
1answer
49 views

Save Setting onDestroy

How to save setting after we exit the app using onDestroy? Example: When the app start, it will start Main_Activity.class Button button1; public class Main_Activity extends Activity { ...
1
vote
1answer
65 views

onDestroy crash after closing app

I'm having some problems after making an override of the method onDestroy. My app is a music player, using the instance of mediaplayer I need at some point to force the release of it if no music is ...
0
votes
1answer
36 views

Android - Resume activity (when destroyed)

I have say ActivityA, when i press the back button, I call moveTaskToBack(true) in order to put it in the background (onPause() is called). When I go and do other stuff in phone, the system will ...
0
votes
0answers
74 views

activity is being destroyed

I just want to thank the people who answered my thread yesterday it helped me a lot but now the topic the different. I managed to fix the NPE but apparently my activity is being destroyed. This is ...
0
votes
1answer
45 views

app destroy code editing

I want to destroy the webview and start airpush ads in my app on app exit.Is this a stable way or should I combine them together public void onDestroy() { if (mWebView != null) { ...
0
votes
0answers
158 views

Grid view state not retained on restart of the Activity

I'm facing an issue of retaining the grid view state on orientation change. Initially, when the grid view is created only 9 images are loaded. As and when the user scrolls the grid view more images ...
0
votes
0answers
81 views

IllegalStateException after change in sharedpreferences

The problem is that when user changes something in preferences, activity performs some inserts/deletes on database, which sometimes causes(to be precise only after returning to the main activity from ...
2
votes
2answers
180 views

How to automatically test onResume behaviour by calling onDestroy using Robotium?

I am using Robotium to functionally test an Android app. I'd like to test the onResume behaviour after onDestroy has been called. This post hints on using Instrumentation, but i can't get it to work. ...
0
votes
1answer
84 views

Android: Activity.onDestroy() restarts service

I've got an app that runs in the background, using a service. But when onDestroy is called in the main activity, the service gets reseted, calls onCreate and onStart over again. How can i prevent ...
0
votes
3answers
46 views

How to stop application/service from destroying?

I have an application that has a single screen with a "start logging" button, which starts a service. After it is pressed, the button changes to a "stop logging" button and stops the service onClick. ...
0
votes
2answers
110 views

Android detect when app is going to be updated

I am developing an android app and I need to save data when user is making a market update. Actually before the update is started. I tried using onDestroy() but that is not called when the app is ...
6
votes
1answer
154 views

Is it safe to do all cleaning up in onDestroy?

More concretely: Is it safe to place the canceling of a task in onDestroy? Also, is it safe to use onDestroy for unregistering receivers and freeing up resources? My aim is to make sure that my task ...
0
votes
0answers
29 views

How much time Android afford to Service for finishing it's work in onDestroy()

In my app I have core which do a lot work (network, database). And it's finishing can take some time (for example wait responce from server and serialize model to SQLiteDatabase). But I don't find ...
0
votes
3answers
159 views

How to avoid Service to be stopped on configuration change?

Hi and thanks for your help. I have the following situation. My Activity is bound to a Service that performs heavy data retrival from internet via an AsyncTask. Since the Service is heavy I need ...
0
votes
0answers
95 views

ImageView width and height are 0 after activity got destroyed

I have an app with one Activity and the following ImageView: <ImageView android:id="@+id/imageview_main" android:layout_width="match_parent" android:layout_height="0dp" ...
0
votes
2answers
366 views

How is my fragment's onCreateView called before it's onCreate when finishing the activity in onCreate?

This is very odd. I have a simple app which once logged in shows a fragment in an activity. The app also has an inactivity "timeout" after which time it finishes the activity and shows the login ...
3
votes
3answers
136 views

Acivity is getting destroyed while pressing the home button.

In my application, when i press the home button the activity is going to onDestroy(). It suppose to be called onPause() method only right? Why it is happening so?
0
votes
0answers
117 views

onbackpressed exits the application

I have an application that has a Main menu (MainMenu.java) which starts an activity (ActivityBlah) on a menu button press: public void onClick(View v) { switch (v.getId()) { case ...
0
votes
1answer
127 views

releasing mediaplayer when calling OnDestroy forces exit when backplayer pressed

I have an app that plays audio after taking the user through a couple of views. At first all worked fine except when the backbutton is pressed while audio is playing at which point the app closed but ...
0
votes
1answer
101 views

Situations when a Service's onDestroy() method doesn't get called?

I'm aware that a Service's onDestroy() method may never be called but can someone tell me when such a scenario might occur? I'm especially interested in whether it's possible for a Service to be ...
0
votes
3answers
331 views

Save data in activity's onDestroy method

I'm writing a tasklist and have Project object, which holds all the tasks (and metadata). I use action log, so when tasks changes i do not save it immediately to database, just keep it in memory to ...
0
votes
2answers
691 views

android stop background service after activity crash

At the beginning, I would like apologize for bad english. There is my problem: I have a service in android which runs on background when is activity running. (This service synchronize user data with ...
0
votes
2answers
108 views

Storing variables through onDestroy() event

I'm looking for a way to store the state of my variables that may have been changed from there initiation variable (ever by user activating a function or other) through the onDestroy() event so that ...
0
votes
2answers
108 views

How to destroy an Activity so it doesn't show up when the back button is pressed?

I have two Activities, A and B. Here is a normal scenario: A is running, then sends an intent to B. A is paused, and B displays. When the user presses the back button from B, B us destroyed and the ...
1
vote
1answer
192 views

Android MapActivity crashes when using super.onDestroy

I have an app that has been pretty stable so far, and I decided I wanted to add a MapView to it. The MapView is in a HorizontalScrollView if that makes a difference. I converted my main activity to ...
2
votes
3answers
136 views

Android: How to backup a database when the application gets closed?

I am needing help to determine the right approach. I want to make a backup of an internal database to a location in the external storage every time the whole application gets interrupted or ...
1
vote
1answer
220 views

Array Shared Preferences Reconstruct TableLayout OnDestroy

I have an application which is supposed to work as a diary, where the user can imput some text and store it to future reads. Each entry is stored in a tableLayout one over the other. I've got this ...
0
votes
0answers
136 views

How to properly close Android dialog window and Licensing service

I was playing around with my app and found a corner case which is causing two exceptions. In this app you start the app normally, and when you press a button you'll see a spinner progress dialog ...
2
votes
0answers
113 views

On android (glsurfaceview) textures are white after MainActivity.finish() and MainActivity.onDestroy()

Working on an app that uses a MainActivity->RelativeLayout->GLSurfaceView. When exiting the app (OK, per contractor requirement) via Activity.finish(), on next launch it will start in its initial ...
1
vote
2answers
87 views

How do I end a service only when I exit the app?

I have a service I want to run the second the app opens, and only want this service to end as soon as the user exits the app. How do I program those two things?
0
votes
4answers
417 views

Back button calls onDestroy() while my countdowntimer is active

I'm running a countdowntimer in a fragment and everytime I press the back button onDestroy() is called and kills my countdowns. When I launch my app again a new activity has started and the countdowns ...
0
votes
4answers
219 views

Android: write to file OnDestroy()

Here's my current situation: Eclipse Win7 Samsung SII (for testing) I am writing an Application that will read from a file stored privately on the device when it starts, and then, i want to write ...
2
votes
2answers
367 views

Why override Activity.onDestroy() if it isn't reliably called?

I'm confused why anyone would ever override Activity.onDestroy() instead of onPause() if according to the documentation: There are situations where the system will simply kill the activity's ...
-1
votes
3answers
129 views

onDestroy is missing. Auto completion doesn't help me

I would like to call onDestroy() at the end of my Activity. Here is what i put : @Override protected void onDestroy() { unbindDrawables(findViewById(R.id.rootView)); super.onDestroy(); ...
0
votes
2answers
112 views

When click another application my application automatically destroyed?

My application is running in the same time i can select another application, my application is destroyed automatically. How do avoid destroy. Thanks in advanced.
1
vote
5answers
939 views

Android back button behaviour

Let's say we have a default, empty activity with default behaviour, launched with default intent flags. User presses back button on the device. The activity disappear... but how, actually? Is ...
1
vote
2answers
1k views

Android app doens't call “onDestroy()” when killed (ICS)

I'm developing an android app using bluetooth communication (using a propetary protocol) and I need to catch the moment when the app is killed. I wanted to use the "onDestroy()" method but it isn't ...
0
votes
2answers
573 views

Android Live wallpaper doesn't show

i have just started learning live wallpapers and i made this little thing. the thing is my app compiles with out any problems. as i open it in the phone it shows the wallpaper in the preview but ...
0
votes
2answers
139 views

Data on a Extended Application class lost when app is closed

I´ve an Android Application that holds some static objects on an class that extends Application class, using the same approach as exemplified here. The objects that is hold by this class is shared ...
0
votes
2answers
339 views

implications of AsyncTask.execute in onDestroy

I have this code running in my onDestroy function: @Override protected void onDestroy() { if (!(null == theUser.glideId)) { JSONObject req = new JSONObject(); try { ...
2
votes
2answers
2k views

what exactly Activity.finish() method is doing?

I'm developing android applications for a while, and followed a lot of posts about activity life cycle, and application's life cycle. I know Activity.finish() method calls somewhere in the way to ...
1
vote
3answers
978 views

My android service onDestroy method is not being called. Could it be because of low ram?

I have a galaxy vibrant. I installed ICS rom on it a while ago. I noticed a video capturing program I used to use on 2.2 now suddenly quits without notification while I am capturing video. I then went ...
0
votes
2answers
674 views

Prevent activity from being destroyed on back button pressed

I'm using an Activity A as a menu to access activity B. The initialization of Activity B is quite long (1.5 sec approximatively). This is due to the creation of a custom adapter and the gathering of ...
0
votes
2answers
312 views

“Force stop” Option still avaliable after app was destroyed

I noticed that after I quit an app using the back button, when I go to the "Manage apps" menu I still have an option "Force Stop". Shouldn't the app be already dead at this point? (I made sure that ...
0
votes
1answer
354 views

Stopping android service in case of force closing

In my android application, it runs a Service in the background. It is a media player application. The service is started whenever the play button is pressed and the service is stopped whenever the ...

1 2 3