The activity-lifecycle tag has no wiki summary.
-3
votes
1answer
30 views
Android kills my application in some specific devices [closed]
I have a weird behavior, in some specific devices (see happening on: Motorla Defy[2.2] and Galaxy S3[4.2]) when I install my application from Google Play (do not happens when installed by eclipse) ...
0
votes
0answers
24 views
Android: Why does “launch timeout has expired” occur when launching an activity within the same app?
I have a test app that launches an internal settings activity using its class name:
Intent intent = new Intent(this, MyTestAppSettings.class);
startActivity(intent);
There is a long delay (10 ...
0
votes
2answers
33 views
Activity lifecycle - array was erased
I have a problem with Activity life cycle. In my server communication Activity I am downloading the list of items from the server and then setting up the Adapter for the ListView.
Everything is fine ...
0
votes
2answers
54 views
Pause activity and go back to previous activity
I have two activities. Activity A starts activity B when button is pressed. Activity B loads some data on create. When I press back button activity B is being destroyed but I want to just pause it and ...
0
votes
0answers
13 views
AsyncTask re-executing onresume
I have this little problem.
I fetch data from network into a ListView using AsyncTask. If I press on an item it takes me to another activity. Then, if I press the 'back' button, the AsyncTask does ...
1
vote
2answers
43 views
OnDestroy not destroying objects created in OnCreate
I have a program that loads a bitmap from gallery (by dispatching intent for result) and then displays the image. Then when leaving the activity that displays the image, I call bm.recycle(). But that ...
-1
votes
1answer
28 views
Restrict call for Activity life cycle when using Fragment? [closed]
I implement Fragment life cycle method, but what I observed is it give callback to Activity Life cycle method also. So how can I restrict Activity life cycle method in this case?
-1
votes
1answer
36 views
Which Method is Invoked when i drag Notification Bar
Hi Everyone iam new to Android and in project i need to perform some operation when user drags notifcation bar from top , i tried overriding all methods in the Activity but no method is getting ...
0
votes
3answers
56 views
Android toggle button state
Hi I've an activity that shows a toggle button. The issue is that, when I press the back button on the device and then I come back to my activity, the state of the button is reset.
How can I do to ...
0
votes
0answers
37 views
Android keeping activity from being killed via service
I've searched a lot about keeping activity and I know it's not recommended to keep it alive. However I want it running as long as possible giving it highest priority.
In my app there is remote ...
0
votes
1answer
33 views
How can i know in my service when my entire app is in the background
Mainly all I want to do is that when the user uses my app and presses the home button or just exits the app (doesn't matter which way he exits), the next time he enters the app I want to display the ...
0
votes
2answers
50 views
Activity lifecycle - need to differentiate pause causes
I'm developing an app on 2.2.2, and need to take certain actions when the screen blanks, user presses 'home' etc.
Most of this is fine: when screen blanks, onPause() is called, then onResume() on an ...
0
votes
3answers
291 views
onCreate(Bundle savedInstanceState) in always null
I know, this question is asked before on stackoverflow, but non of the answers worked for me.
Probably worth mentioning:
I use ActionBarSherlock with the support package.
Method ...
1
vote
5answers
66 views
onBackPressed - avoid destroying activity
I have two activities - activity A starts activity B. Then activity B loads some stuff from database, and visualizes the data. It takes some time (5-10sec) to fully initialize all the stuff in B.
My ...
0
votes
1answer
49 views
How can I call the same functions in onCreate() and onResume() methods?
I want to run the same functions in onCreate() and onResume(). The functions basically record in 10 seconds and then stop and play the recorded sound.
public void onCreate(Bundle savedInstanceState) ...
0
votes
1answer
56 views
Problems with activity lifecycle
I have some problems with starting new activity. In my app I have setup broadcast receiver which listens for intent (screen off). When screen is off, my app should start new activity (under certain ...
1
vote
0answers
55 views
how to prevent Fragments firing onCreate&onCreateView on activity recreation
So I have activities A, B, C
App flow is A->B->C
A,B are connected with logging-in functionality and are launched only once to log in.
Whole app is inside C Activity. A,B are alive when user uses C. ...
1
vote
2answers
46 views
How to test your app being killed and restarted?
I'd like to test the case of my app being killed and restarting in a non main activity pretending to the user that the app was simply resumed. Anyone know how to do this? None of the ideas I've found ...
0
votes
1answer
35 views
android - Handling app start up in non main activity
I just noticed android pretends to resume your app after killing it in the background by restarting you at the activity you were previously on.
1) Can I disable this feature?
My problems lies in my ...
1
vote
1answer
58 views
Bring application to background and then to foreground
What method should I use to move my app to background and then move it to foreground again?
I tried using moveTaskToBack(true) and the activity is moved to background successfully but then I can't ...
0
votes
1answer
70 views
Broadcast receiver not triggered after app is stopped
I have a broadcast receiver defined in the manifest with the android.bluetooth.device.action.ACL_CONNECTED in the intent filter.
It's triggered fine when the app is in the stack, but after I stop it ...
3
votes
1answer
130 views
Code is requesting the yahoo weather service again and again
I have developed an android app which uses Yahoo! Weather API for getting weather information, as Yahoo! Weather API allows to request the service only 10 to 20 times per hour. my app has tow ...
1
vote
1answer
91 views
android singleTask activity
Looking into activity lifecycle, found following image in android documentation:
How can Activity Y be declared as singleTask? It is on the top of a task! As I understood it should always be as ...
0
votes
3answers
65 views
onCreate called despite using FLAG_ACTIVITY_REORDER_TO_FRONT
I have 2 activities (A and B) and they have 2 buttons to switch between.
A oncreate
B oncreate
A oncreate
A onresume
what I wanted to do is after sending intent from B to A oncreate should not ...
0
votes
1answer
81 views
Minimizing the app, changing language and resuming calls onCreate() instead of onResume()
I just noticed a weird issue I've been having in my app. When I'm running my app, if I minimize it, then go the settings and change the language, then resume my app(note: this is minimize/resume, not ...
3
votes
1answer
221 views
Android Jellybean Activity Lifecycle Bug
My problem only occurs when I lock the screen and only in Jellybean 4.1.2 and 4.2.2. Tested on a Galaxy mini and an HTC. Both cyanogen mod. The problem is when I lock it it's call onPause then ...
2
votes
0answers
88 views
SDL2 on Android, how to catch onResume events?
I'm trying to makes some project with simply SDL2 on Android.
I've first tried to compile the example given in the archive tesgesture.c, you can see the code here.
It works fine on my Android phone, ...
2
votes
4answers
156 views
Should I manually close HandlerThreads created by my application when destroying the activity?
My app is composed of a single Activity. In this activity, I'm creating multiple HandlerThreads which run in a loop to do socket blocking operations.
Currently I post a quit message to everyone of ...
0
votes
0answers
14 views
Issue with Opening app from Background
Activity A leads to activity B.
For activity A:
App going to background means:
Press home button
Press power button
App opening from background means:
1a. (Under above condition is true) open ...
0
votes
1answer
80 views
Get item view from ActionBar
I have an ActionBarSherlock with one menu item in my bar. When I'm call
View item = findViewById(R.id.my_item);in activity's button onClick all works fine as expected.
But when I try to do this in ...
0
votes
4answers
237 views
Kill Splash Screen When Click “BACK” Button
I have created a splash screen for my android app. My question is simple. After 5 seconds splash screen disappear and main activity works. Then if i click "Back" button it returns splash screen again. ...
0
votes
1answer
70 views
How to test switching to another app and back with Robotium?
I need to test the flow onPause() -> onStop() -> onRestart() -> onStart() with Robotium. What's the best way to do that? Shall I use Instrumentation and call for its methods as I listed one by one or ...
0
votes
1answer
35 views
modifying the listview with the result returned bu the another activity in android
i am very confused about how i should implement the following in my android application.
Let me explain the functionality that i want :
-i have a list view in my First Activity , say Activity A
-now ...
1
vote
0answers
38 views
Do not close the camera just because another activity that I launched is in the foreground temporarily
I have a very stable application using the camera where I call camera.open() in onResume() and camera.release() in onDestroy() of my activity.
This is well and good, until I do some small task that ...
6
votes
5answers
298 views
How to finish a destroyed Activity?
As I understand it, an activity being destroyed is not equivalently to an activity being finished.
Finished
The activity is removed from the back stack.
It can be triggered by the program (e.g. by ...
1
vote
2answers
106 views
Android: activity performing unwanted function during onResume()
I'm making an app with a splashscreen animation. I have given the user the option of canceling the animation.
The home screen (Home) has a TextView (tv) . I set the text during the onCreate(), and ...
6
votes
1answer
152 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
58 views
Trouble passing list of items back onDestroy()
Currently I have a parcelable arraylist of objects being passed successfully throughout my application. However when I try to go backwards and save the state of the arraylist which is a list of order ...
0
votes
1answer
155 views
Activity Lifecycle behaves differently JellyBean onwards
I have the following scenario. Activity A starts Activity B. B starts a Notification clicking on which another activity C is started. Now the behaviour is different on Gingerbread and ICS onwards. ...
0
votes
3answers
126 views
Android multi-activities app best way to detect application going in background
I am developing an Android application with number of activities. My MainActivity (Starting activity) has code to fetch updated data from server. I want to fetch updated data from server every time ...
3
votes
2answers
208 views
How can you detect if your activity is being onPaused because of a PendingIntent which you created?
If I have an Activity which is in the foreground and I navigate to another Activity within my app, I can detect this by setting a flag when you begin the transfer and wiping it when you have ...
0
votes
1answer
77 views
When to save SharedPreferences?
I want to save some small data structures (~1kB total), as well as the user's preferences, while my app is closed. The settings are modified only in my PreferenceActivity, but the data structures are ...
2
votes
1answer
246 views
android AsyncTask with activity lifecycle
Am using AsyncTask in order to download images within my activity
the flow goes like this:
protected void onPreExecute() {
\\begin animation
}
protected IUpiResponse ...
0
votes
0answers
179 views
onResume() get called when press back button
There is a strange thing happening when I press back button, the same Activity's onResume() method is getting called.
Does it mean there are more than one instances of this Activity in stack?
Can ...
1
vote
2answers
188 views
Determine if application on foreground - is that frowned upon?
There are lots of reasons why detecting if application is on foreground.
for example - as a trigger to GCM/C2DM push notification - lot's of apps would have good reason implementing different behavior ...
0
votes
1answer
59 views
Is it necessary to override onSaveInstanceState to save private fields?
I have a simple Activity class with an onCreate() method that sets a private boolean field if all initialisation tasks succeed. I read the value of this boolean in other parts of the class.
public ...
0
votes
1answer
55 views
Android app: managing activities
I am trying to learn android programming. I have made a basic app. It has a main activity, a settings activity and a notification that opens the settings activity on click. Main activity also has a ...
0
votes
3answers
120 views
onResume causing problems on start up
I have an activity that allows the user to start a second activity. The second activity has a list of items which I add to an array list. When I return to the previous activity I want to display the ...
1
vote
6answers
614 views
ANDROID onBackPressed doesnt work for the activity
I implemented the onBackPressed for my activity where it will check the internet connection but when i click the back button in my tablet, it does nothing. I dont understand what is the cause of it. ...
1
vote
1answer
109 views
Activity reloads the whole data from server again when coming back from an other activity in andoird
basically i m working on a app which have a tab-activity including 4 tabs and also i m using the actvityGroup to manage the activities and backKey pressed() method.
when my aap first starts it sends a ...






