Questions regarding the events forwarded by the system to components, during their lifetime, in an Android Application. Most components have a specific LifeCycle that is imposed upon them. This tag is not meant to be used alone: use with [tag:android-activity], [tag:android-service], ...

learn more… | top users | synonyms

1
vote
1answer
27 views

How to open main activity when application was killed?

A = Main Activity B = Some Activity Normal case A > B > Home Button > B Application was killed case A > B > Home Button > idle for some time > application killed > open app again > A How can I do ...
-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
2answers
39 views

Android ListView Activity Throws a NullPointerException when restarting after a prolonged period of time

Problem I'm making a simple app that retrieves a data set from a webserver in JSON form, parses it into objects contained in an ArrayList. This array list is then output in the form of a list view. ...
0
votes
3answers
61 views

How to clean variables in an Activity?

In my Application when on pressing on the back button returning to previous activity, the variables are still set up and containing values, my question is how can I reset all variables in any ...
0
votes
0answers
55 views

OnPause is called immediatly after Oncreate, OnResume

I got a weird problem in my Application, In My Activity OnPause() is called immediately after OnCreate() and OnResume(). I have some functions to be performed in OnPause(), but I don't know why this ...
0
votes
3answers
46 views

Android - How to reference a Fragment from another Fragment within the same Activity?

PROBLEM: When I try to reference the layout of one Fragment from another via the parent Activity. The layout I am trying to access is always null. I believe it is something to do with the onCreate() ...
0
votes
0answers
48 views

Wierd behaviour of activity lifecycle - after onResume() also onPause() called …why?

I have a Form with edittexts and a button to call the camera with an intent (return a bitmap that is put into the imageview)...From the portrait mode i enter all edittext filed and then click the ...
0
votes
0answers
15 views

onStop being called in second run of app using MonkeyRunner

Using MonkeyRunner, I do the following: 1) start my app's main activity 2) wait for a few seconds for the app to initialize 3) press the back button. In onBackPressed(), I initiate clean up of the ...
0
votes
0answers
42 views

Android - exception SuperNotCalledException in an Activity where I do call super

I have this exception: android.app.SuperNotCalledException: Activity {com.problemio/com.problemio.SupportActivity} did not call through to super.onDestroy() at ...
0
votes
1answer
16 views

Why to call super class methods from android activity life cycle methods?

Why should we call super class onCreate() method from my activity's onCreate()? What is the reason behind calling super class methods from every life cycle method? Could you please clarify me ?
0
votes
0answers
32 views

prevent android from killing fragment

I'm trying to create a fragment that exists for the entire duration of my app's lifecycle. I want it to be created only once and to be destroyed when the activity's onDestroy() function is called (so, ...
0
votes
0answers
26 views

Android App Life-cycle - Restart Issue

I've fairly new to Android, build a fairly successful App on Google Play. I require a user to create an account using email or fb on first use. I have received feedback from users stating everytime ...
1
vote
1answer
49 views

Just Published 1st App. It works fine on my Nexus 4 Running 4.2, but friend says it crashes on shake on her Electrify M Motorola running 4.1

I have a question and would really appreciate any help. My friend says the app crashes onshake. My first app is a simple magic 8 ball app, that gives a random answer when the user shakes it. She says ...
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
2answers
43 views

Restoring state in Android when using the 'up' button

I am using onSaveInstanceState() to store an ArrayList member variable and restore it in the onCreate() method of the main activity. This works in most circumstances such as rotating the screen etc. ...
0
votes
2answers
35 views

singleTask Activity called from Service doesn't trigger onNewIntent

My understanding was that a singleTask activity, if it exists already, is not going to be created again, but its onNewIntent is going to be called. In fact, that's what happens when I start an Intent ...
0
votes
1answer
39 views

Android onCreate is called after locking the screen

When I lock the screen while my app is running "on top", the system calls almost immediately onCreate (screen is still black). What could be the reason for this destructive behaviour?
0
votes
0answers
48 views

Destroyed fragment recreated and redestroyed when restarting the app

I'm trying do understand the lifecycle of Fragment. I have a MainActivity, with a layout including two FrameLayout to load Fragments, one for a top bar with a vertical menu, another one for the ...
0
votes
2answers
87 views

Issue with Fragment lifecycle: getView() is null

I have a MainActivity, with a layout including two FrameLayout to load Fragments, one for a top bar with a vertical menu, another one for the content. Everything works properly, excepted when I click ...
0
votes
3answers
80 views

Android life cycle which event fired only once during the life cycle?

I have read some blogs and visited some site. I want to know which event fired only one time during the life cycle. After reading blogs I realize that onCreate() method is fired only once during the ...
0
votes
0answers
35 views

Loading data into fragments using AsyncHttp and updating views properly

Ive been working on a beta of a fairly large social app . Up until now I have just been loading data into my fragments like this (code below) Im using the AsyncHttp request lib you can find ...
0
votes
1answer
39 views

Crash upon screen being unlocked

My app runs fine besides when the user stops using their phone long enough for the screen to lock, when they unlock it the app crashes and im a bit clueless as to why. Here is the error: here is ...
1
vote
2answers
92 views

findViewById(android.R.id.content).getRootView() nullPointerException

Why does calling findViewById(android.R.id.content).getRootView() in onPause or onStop return NPE but not when I call it in onCreate?
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 ...
3
votes
2answers
65 views

AsyncTask will always run even if app is destroyed?

i have an application and because you cant do network operations on the main thread im using AsyncTask, so the question is once i execute() the AsyncTask right after that i finish() the activity, and ...
1
vote
1answer
23 views

is a view's “tag” restored when the activity whose layout contains the view is recreated?

The docs concerning Activity recreation state: By default, the system uses the Bundle instance state to save information about each View object in your activity layout (such as the text value ...
0
votes
3answers
104 views

OnCreate bundle is null despite calling onSaveInstanceState

I'm trying to restore the previous state of my Activity after pressing home and reopening the app so I'm saving what I need inside onSaveInstanceState: protected void onSaveInstanceState(Bundle ...
2
votes
1answer
128 views

In libgdx on Android, how do I save game state in case app is killed?

In Android, we usually save all of our state variables in the onSaveInstanceState() callback by putting them in the Bundle provided. How do people deal with saving/loading game state variables with ...
0
votes
0answers
32 views

Android App Restarting

I'm fairly new to Android and have just released on App to Google Play. I had thoroughly tested the App for Android 2.3 and Android 4.0. I have received two emails from users in which when they ...
0
votes
1answer
30 views

Managing application state

The Android Activity life cycle is giving me a little bit of a headache these days. I want to store what Activity was the last one displaying, before the app went into background, so that I can ...
2
votes
2answers
28 views

Never call on Create when process is killed

I'm building an app that works on my Nexus 7 without any problems and also on my Galaxy S2. Now I've tested it on a Galaxy S3, but somehow the memory management is far more agressive. If I press the ...
0
votes
1answer
29 views

android activity recreation- will the intent contain original extras?

I have an activity that expects to be passed a few extras when launched. When this activity is destroyed and recreated, will the intent returned by getIntent() called from within onCreate() contain ...
1
vote
1answer
64 views

Why is my onResume being called twice?

Basically, this is what I'm doing 1) Set AlarmManager to execute BroadcastReceiver (BCR) Intent intent = new Intent(m_Context, BCR.class); intent.putExtras(extras); PendingIntent pendingIntent = ...
3
votes
2answers
142 views

Android Fragment View State Loss When Using FragmentTransaction.replace()

I am having a pretty big issue and I am not quite understanding what is happening. I am developing an application that uses Fragments (from the support library) and am using ...
0
votes
1answer
27 views

onRestoreInstance() is not getting called

I am using onRestoreInstance() for retrieving the data saved in onSaveInstance, but in my application it is not being called when coming back to the activity again. While my activity is running, I ...
0
votes
1answer
74 views

Reopen App After Kill, Opens Previous Activity

My app history is normal; I am not using any fancy flags or anything when I am launching intents. Only sequential, single-task launched activities. If I go Home, and then use a task killer to kill my ...
1
vote
0answers
14 views

When the notification bar is expanded or collapsed by user neither of activity lifecycle methods gets called

When the notification bar is expanded or collapsed by user neither of activity lifecycle methods gets called. Could any one tell me which life cycle method will b invoked when notification bar is ...
5
votes
2answers
63 views

android lifecycle onActivityResult vs onStop

If activity A starts activity B for result, I was under the impression that the onStop method of activity B is called before the onActivityResult method of activity A. Why is that not the case? I just ...
1
vote
1answer
49 views

When to Unregister LocalBroadcastManager Receiver?

Can someone give me an example of how to properly to unregister LocalBroadcastManager Receiver in Activity class? Android Developers Training suggests do that: @Override public void onPause() { ...
0
votes
2answers
37 views

Determine if a service is running when it's started as it's own process?

I want to run a service in the background as long as the android device is on. I already have a broadcastreceiver listening for BOOT_COMPLETED to ensure it starts when it should, and it does. But when ...
1
vote
0answers
17 views
+50

Android: When to register and unregister for notifications?

I use a Notifications interface to update fragments whenever data is changed. public interface Notifications { void register(ID id, Listener listener); void unregister(ID id, Listener ...
0
votes
0answers
48 views

View state and Android lifecycle with fragment pager

I'm having trouble understanding the lifecycle of fragments, with respect to saving instance state. [edit] TL;DR: In which cases can text get lost, i.e. when would onSaveInstanceState() be useful? ...
0
votes
1answer
44 views

How to detect whether onResume() is called from onCreate(), from application wake up or from switch activities?

I am a little bit confused about how android's lifecycle works and how to detect the source of function call such like onResume. Let me state this problem this way. I have an app which contains 5 ...
1
vote
3answers
160 views

Fragment's reference to mActivity becomes null after orientation change. Ineffective fragment state maintenance

My application consists of several fragments. Up until now I've had references to them stored in a custom Application object, but I am beginning to think that I'm doing something wrong. My problems ...
0
votes
0answers
82 views

System kills my android app after some idle in onStop() state. How to avoid or detect this situation?

I have an application that plays audio and video files from the remote server or from its own cache directory. When I minimize my application with "home" or "back" button it changes its state to ...
1
vote
2answers
32 views

small conformation on activity life cycle

As i am new to Android i need clarify some doubts in Activity Life cycle. I have two activities A and B. I launched first Activity A and i called Activity B from Activity A. So, Activity A went into ...
0
votes
1answer
46 views

When is a Fragment created in the Activity's onCreate accessible?

I am creating & attaching a fragment in my activity onCreate method : FragmentManager fragmentManager = getSupportFragmentManager(); FragmentTransaction fragmentTransaction = ...
0
votes
1answer
88 views

Prevent onResume() function if Activity is loaded for the first time (without using SharedPreferences)

In my current application the onResume function is triggered when I load an Activity for the first time . I looked into the Activity Lifecycle, but I didn't find a way to prevent this from happening. ...
0
votes
3answers
294 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 ...
3
votes
6answers
135 views

How to use onResume()?

Can anyone give me an example that uses the onResume() in android. and I want to know if I want to restart the activity at the end of exectuion of an other what method is executed onCreate() or ...

1 2 3 4 5 7