Tagged Questions
1
vote
1answer
49 views
Android: Is the UI-thread working similar to the Swing UI thread?
EDIT: I modified the question a bit. I did now actually implement my example. Before I transferred my actual code to a simpler example which actually did some thing different in the end.
I am ...
0
votes
0answers
39 views
onRestart() being called BEFORE onPause()
I have a situation in which onRestart() is being called unpredictably during my Activity's life-cycle. This would not ordinarily be an issue (indeed I require onRestart() to reinitialize some Activity ...
0
votes
2answers
61 views
Activities and their lifecycle
Consider this:
Activity A
Activity B
Activity C
Activity A is started when clicking on launcher icon. Activity B is started by activity A - nothing special. But Activity C should be started ONLY ...
0
votes
1answer
14 views
Activity Lifecycle - onStart, onStop
I've read all the documents and explains the lifecycle, but one thing I'm missing is: Does onStop and onStart have to be present (even if they are empty methods) in the Activity for the activity to ...
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
1answer
21 views
Activity lifecycle and rotate issue?
I'm learning about activity lifecycle. When i rotate the phone (from potrait to landscape or otherwise) i can see the activity change from resume -> pause -> stop -> create.
My question is why doen't ...
1
vote
2answers
119 views
Android - Is it possible to determine if an activity was started from another task?
This is pretty elaborate, so I'll try and be as clear as possible. Currently, my application needs to reload some data when it is launched. I am loading this data in the onCreate/onRestart methods of ...
0
votes
1answer
271 views
Android Activity/Fragment memory management vs application workflow [closed]
Context:
1. Destruction of UI elements when they are not shown (hidden, or the app is backgrounded) and their automatic restoration upon return.
It cannot be reliably tested on demand, but appears to ...
1
vote
0answers
90 views
Android OpenGL ES: Resuming/pausing an Activity
I am having difficulties understanding the right way to split initialization and maintenance of application state between Activity, GLSurfaceView and Renderer.
Let's say I have a game with complex ...
1
vote
2answers
383 views
Where does 'Force Stop` leave an Activity in its life cycle?
Let's say my application is up and running. I then go to my devices home screen. Navigate to Settings>>Applications>>ManageApplications, choose my application, and press Force stop.
Which Activity ...
0
votes
1answer
71 views
Android: reload the activity
I have the following situation:
Activity A
Activity B (marked on manifest as singleTop)
When I go from A to B, I call B.startActivity setting the flag
"FLAG_ACTIVITY_REORDER_TO_FRONT"
(in this ...
0
votes
1answer
273 views
Android game crashes after wake up the screen
I have problem with my game on Android: when I deactivate the screen by pressing power button in the game activity and then wake up the phone I have black screen for something about one minute and ...
0
votes
1answer
71 views
Android home screen lifecycle
Please can someone explain me the "standard" Android home screens lifecycle?
I'm asking this because I've noticed that my home screen when it's started goes in create-pause-resume-destroy-create ...
1
vote
2answers
90 views
About the life cycle of an android component
First of all, I'm new in android developing...
I had read some article in android API guide and feel confused about the component life cycle with the hosting process.
Here is my understanding:
...
0
votes
2answers
139 views
How to handle Android Java objects which “extends Activity”?
Let's say I have two classes:
Class Show is my normal Android activity.
Class Work is a Java class which does a lot of work:
public class Work extends Activity {...}
As you can see, Work extends ...
0
votes
1answer
564 views
Android: onResume() not called after pressing home button
I have an activity that makes a call to a remote server when it's started.
The thing is, that when the app is on the background, and the server creates new content, when restoring my app, this new ...
0
votes
2answers
56 views
Android: show a notification due to an external action
I have to show a notification when my MainActivity is onPause() so i write the code below on my MainActivity, so by onPAuse() i mean the Activity is interrupted due to an external action (missed call, ...
1
vote
2answers
246 views
How to test Activity onDestroy method
I need to test an Activity onDestroy method followed by onCreate and onRestoreInstanceHandle. I know one way to do this - change screen orientation. But there is another situation when activity is ...
4
votes
2answers
348 views
Why would I ever want `setRetainInstance(false)`? - Or - The correct way to handle device rotation
Please correct me if I'm wrong on any of this. This is a kind of clarifying question since I haven't seen it explicitly written anywhere.
In Android 4, you can call setRetainInstance(true) on a ...
1
vote
2answers
65 views
Make my Android app work even if the user navigates away from it. How do I do that?
My Android application does some calculations, but I noticed recently that if I were to navigate away from the application, the thread that was running and doing the work stops.
This also happens if ...
1
vote
2answers
79 views
Activity lifetime - importance of the declaration sequence
Does it change anything to write :
@Override
protected void onDestroy() {
MydbHandler.close();
super.onDestroy();
}
Or
@Override
protected void onDestroy() {
super.onDestroy();
...
0
votes
1answer
198 views
When activity comes foreground go to main activity not to top of the stack
I have 3 activities, then I navigate from A to B and from B to C. The stack are C-B-A (with C on the top). The C Activity have a Runnable that works every interval, and connect to a web service that ...
0
votes
2answers
112 views
Exit child activity and return to home activity - what lifecircle is it?
[Warning: this question contains no code, so may look not interesting.]
An app has the following structure (basically 3 level of activity: home->category->item):
--- Home Activity (TabHost)
------- ...
1
vote
1answer
187 views
Force onDestroy to solve memory problems
I am facing memory problems in my application, which use a TabHost and TabGroupActivity as TabContent.
I noticed that sometimes the life cycle of Activity is strange.
I start the app, tab1 is loaded ...
2
votes
3answers
211 views
Android Application Pause onStop
I want to make an application that cannot be killed or destroyed. I've tried
@Override
public void onStop() {
super.onPause();
}
But this is not working, the application is still killed. So, ...
0
votes
4answers
180 views
How to close application totally
Application is having 2 activities. I am using following code in each activity to close the application totally and free all resources when home button is pressed. But when i restart the app, it ...
0
votes
1answer
77 views
Android Activity disappearing - Activity Lifecycle
I never experienced this, what's going wrong?
I have a launch Activity A that starts another Activity B (forResult). Then when I hit the home button, both go onPause. When I go back to my app via the ...
2
votes
1answer
100 views
Android activity that I never want to start on
I have an activity that is themed as a dialog. I have seen that if the dialog is showing, and then I press the home button, and then using the task manager, restart the app, that dialog activity will ...
1
vote
1answer
240 views
Avoid destroying of activity
I have a main activity from which the user starts several activities with startActivityForResult .
This might be an external application like the xing barcode scanner or a internel activity like a ...
0
votes
1answer
260 views
startActivityForResult not working correctly
In my app, I have a composition screen that allows you to capture an image using the Camera app, or select an image from the Gallery app. I use startActivityForResult to successfully start the ...
-1
votes
4answers
252 views
State of activity calling startActivity(Intent)
Can someone help me. What method of activity life cycle is called when the activity start new activity by method startActivity(Intent)? I thought, that it is onPause(), but it can not be. I have it ...
1
vote
2answers
1k views
Activity lifecycle vs View lifecycle: how to avoid NPE?
I have a ListView which adapts data from a cursor. The cursor's position of the record is stored via View.setTag(), so it can be retrieved in response to user events.
public class OrderActivity ...
1
vote
2answers
156 views
Working with DatabaseHelper while recreating activity on Android
I have an activity that uses AsyncTask to download and save some data to the database. To open a database we need to pass Context param to the SQLiteOpenHelper's onCreate method, which means that ...
4
votes
2answers
607 views
Activity side-by-side lifecycle
Imagine that I have an Activity A and I'm starting a new activity B from that one.
What will be the Activities lifecycle side-by-side?
1. A: onCreate
2. A: onStart
3. A: onResume
on A => ...
0
votes
1answer
211 views
Is any way to detect when any activity of my app are displaying and when all activities are closing?
I.e I would like to know when user interact with my application and when not.
I have tried do it using ActivityManager.getRecentTasks(). I have checked root activity at a top task to detect interact ...
0
votes
4answers
279 views
Android activity lifecycle: state order when new activity starts
If I launch Activity2 from Activity1 by this way: startActivity(Activity2); what executes first: onStop() (Activity1) or onStart() (Activity2) ?
Do they work simultaneously or in turn? If one after ...
2
votes
1answer
101 views
Activity raises RAM use every time it is started
Alright, so i am sort of confused/frustrated.
I have a service that is always running and an activity. Every time the activity is launched and closed the App memory or ram use raises.
All i have in ...
1
vote
1answer
669 views
Keeping activity alive
I have a series of activities in my application which starts with Activity "A" and followed by "B", "C" , "D" and "E". Activity "A","B","C" and "D" are transparent activities (transparent theme) while ...
0
votes
4answers
198 views
It is possible to make a HoneyComb activity unclosable?
I'm developing a presentation style application for HoneyComb Tablets. At one stage the tablet may be passed around a room for people to interact with. If possible I would like to prevent malicious ...
1
vote
5answers
797 views
why “onPause” is not called in following situation?
By the document, "onPause" is called, when:
when the system is about to start resuming a previous activity.
Compared to "onStop", the difference is:
Called when the activity is no longer ...
1
vote
1answer
101 views
Is it normal for a fatal exception not to kill my entire Android Application?
I'm a little concerned that if I encounter an exception in one of my activities in my application the force close dialog seems to bring me back to a previous activity in the application history/stack ...
2
votes
2answers
279 views
How to tell if the user has finally quit all your activities in android application
I want to set ringvolume to 0 when a user opens my teaching application then return it to the original volume when the user quits. What's the best way of doing this?
I can set volume to 0 with no ...
7
votes
1answer
2k views
Ok to update fragments instead of creating new instances?
In the example on using fragments in the Android docs, when the application is in 'dualview' mode, the details fragment is recreated whenever the application needs to show details for a different ...
-3
votes
2answers
2k views
onCreate called before onActivityResult - Starting new activity always causes previous acitity finish [closed]
(I'm not newbie!, and memory was sufficient.)
I'm working on android ICS(SDK 4.0) and a i got weird activity lifecycle when i call startActivityResult.
the prior one destroys everytime!!
When ...
0
votes
1answer
1k views
What is the exact difference between onAttachedToWindow and onStart
I sometimes see people using the Activity.onAttachedToWindow method but personally, I did never use it. When reading it's documentation it appears to me as it would be almost the same as onStart().
...
12
votes
2answers
624 views
Android lifecycle weirdness with singleTop and foreground service?
Here's the scenario:
Start Activity A
Activity A starts service S
Service S runs in foreground mode and shows up a notification which when pressed takes the user to Activity B (which has ...
6
votes
2answers
3k views
Android: Duplicating of fragments when using Support Fragment Manager
I have a very weird issue with fragments. I use the newest support library. I also use similar code as is used by Google in their IOSCHED project
But I have problem with recreating of activity after ...
3
votes
2answers
497 views
Activity lifecycle?
I think my ideas on activity lifecycle and bundles
are a little confused,can you help me?
Let's suppose the user opens activity A from home screen,
activity A "calls" activity B which fills the ...
0
votes
1answer
208 views
Can I have two onNewIntent() in one Android activity?
I log in in my application with linkedin and twitter. These two client pass by a webview and come back in my application (I use onNewIntent() to get the data from them). The problem is: I can't have ...
4
votes
1answer
1k views
Android activity lifecycle
Quick question - what is called first when activity is restored? onRestoreInstanceState or onActivityResult?
