A sequence of events or system calls relevant to the creation, startup, inactivation, resuming, shutdown and destruction (cleanup) of some program or its component (activity, library, servlet). Lifecycles are supported by various programming platforms.

learn more… | top users | synonyms

0
votes
0answers
14 views

How do life cycle models react to requirements change late in their development

I have been trying to learn the basics of software engineering principles, but I have come across a question that I cant find enough detail on to answer, any help would be appreciated: For each of ...
1
vote
1answer
10 views

Struts 1 Textbox to integer validation

In struts 1 if you try to bind a html:text field directly to an integer in the ActionForm then there isn't a chance to validate it correctly when the user enters a non-numberic value. If the user ...
0
votes
1answer
15 views

Handle return from the minimized state

in my application I want to ask the user for a password every time when he gets application from minimized state. ie the user is working, then turned the app off and then to get into it again, he has ...
0
votes
0answers
21 views

Android LifeCycle for Activities and thei subcomponents

I get from time to time in my app the following stacktrace from a crash: java.lang.IllegalStateException: System services not available to Activities before onCreate() at ...
2
votes
1answer
33 views

When to save the state of an app

I am building an Android game. Now, I am saving all changes of the user state (matches in SQLite, user's preferences in SharedPreferences, and other data in files) in the onDestroy() method of the ...
-2
votes
0answers
26 views

Because jquery functions not binding when control is not visible? [closed]

During load page, one asp.net user control is not visible, after call server postback, this control change your status to visble but jquery not binding in my usercontrol. when the initial status is ...
0
votes
1answer
56 views

Listview change applies after 2nd postback?

i have a listview and a button out of this list view, on button click i want to add a "insert" row defined in InsertItemTemplate. The problem is when i click the button, this row is added(i know this ...
1
vote
2answers
57 views

JSF lifecycle runs 7 times on page refresh

My web page has a primefaces datatable with a simple backing bean. I use a phase listener to log what is happening behind the scenes. Lo and behold, this simple page runs the JSF lifecyle no fewer ...
0
votes
2answers
35 views

String object life in StringPool

All we know that JVM stores String variables in a separate StringPool. Every time when we create a String (eg. String s1 = "anystring") it stores as a constant & when we create new String variable ...
1
vote
0answers
45 views

JPA entities PrePersist and PreRemove callbacks, are they fired only once per life time of an application?

The JPA 2.0 specification talks about the PrePersist and PreRemove callbacks on page 95: The PrePersist and PreRemove callback methods are invoked for a given entity before the respective ...
1
vote
2answers
54 views

Android SQLite database lifecycle

I'm new to android. I want to ask about SQLite database lifecycle. Basicaly, I want to include the insert data method and viewing data method in the main class (which basicaly called 1st when we open ...
1
vote
2answers
46 views

Castle.Windsor - understanding transient lifestyle

New to Castle.Windsor and just wanted to check something. I've been reading about transient lifestyles and "releasing what you resolve" - I've created a Resource provider for my ASP.NET MVC3 ...
0
votes
1answer
42 views

How to choose the attributes of a @property in a nutshell? [duplicate]

How to quickly know which attribute to add to a @property ? I got it for @property (strong) and @property (weak), I think : strong if the class "owns" the referred-to instance ; weak if it is just a ...
0
votes
1answer
42 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?
2
votes
1answer
65 views

Android: Does Fragments with setRetainInstance(true) survive process shutdowns?

Considering this scenario: If I created an activity and it moves to the background and this activity contains a Fragment which is set to setRetainInstance(true) then the Android OS might at some point ...
1
vote
1answer
53 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 ...
2
votes
1answer
276 views

Restoring map state (position and markers) of Google Maps (V2) on rotate and on back (MapView in Fragment)

Background I have a larger application in which I had/have several problems with new Google Maps API. I tried to describe it in a different question ...
0
votes
0answers
11 views

MVC Filter Lifecycle

I have an MVC app with a custom filter inherited from ActionFilterAttribute. The filter contains a private member which is an instance of a menuHelper object. When I initiate the app, the Filter is ...
0
votes
0answers
40 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 ...
5
votes
2answers
46 views

Application class lifecycle while service is running

I am developing an application with custom Application class which initializes a couple of singletons so they live during all application working time. I also have a couple of services in my ...
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
0answers
9 views

Preserving class state and content on application pause

What is the proper way to save the state of non-activity in Android when application is pushed to background, for example, someone calls?
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
48 views

Servlet gets invoked twice

I am using JDeveloper with its integrated weblogic server. I have a cart application. When a user clicks on a particular alphabet, "AlphabetServlet" is triggered and accesses and transfers the data to ...
0
votes
1answer
42 views

how to get Lifecycle states of a Mule instance?

I use Mule 3.3.0 CE. I wanted to get lifecyle states of a mule instance such as: "Initialising, Starting, Stopping, Disposing". I wanted to store these informations. these data, there are in ...
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
2answers
115 views

Unexpected suspension behavior of Windows 8 store app [duplicate]

Here's an excerpt from a link I read: When the user moves an app to the background, Windows waits a few seconds to see whether the user immediately switches back to the app. If the user does not ...
1
vote
1answer
40 views

Android: BroadcastReceiver to know via code when the screen in on/off

I've a Broadcast receiver: public class ScreenReceiver extends BroadcastReceiver { @Override public void onReceive(Context context, Intent intent) { if ...
0
votes
0answers
54 views

how to run spring for android samples via official AndroidSDK

I'm now trying to run Spring for Android Samples. especially, one named "spring-android-showcase". you can download this at githurb, below https://github.com/SpringSource/spring-android-samples ...
1
vote
0answers
34 views

LinkButton control lifecycle, when do I declare the button?

If I have a LinkButton in an ItemTemplate of a GridView, and I want that LinkButton to fire it's events (having given up on the row event), when should I declare the button? <ItemTemplate> ...
0
votes
2answers
24 views

Do not save state for print page

For page for print, which is text only, no command link/button to click, there is no need to save states for print pages. Is there a way to tell JSF not to save states? Thanks.
0
votes
1answer
131 views

AWS S3 to Glacier: did backup work? [closed]

I am experimenting with backing up data in my Amazon S3 folders to Glacier using lyfecycle management options. I chose one of the folders in the bucket for the testing and created a lifecycle rule ...
1
vote
2answers
89 views

LazyLoadingException in jsf validation phase after second ajax submit using a4j:commandButton

I have a problem when I try to submit my form for the second time using a4j:commandButton My view is: <h:form id="myform"> <a4j:region renderRegionOnly="true"> ...
0
votes
3answers
66 views

Running Temporarily Looping Android Code

I would like to make an android app that will complete its start up and then run a while loop until the user had completed a certain task. Then the code would run another function to make sure the ...
0
votes
1answer
136 views

JPA @PostPersist usage

I have a method persistData() which persists an entity object. I have another method findData() which performs find() operation on the same entity class for the primary key value which was persisted. ...
0
votes
0answers
44 views

CanClose - new child in parent conductor to save document

I have shell, which contains TabViewModel (separately as property, and displayed in View through ContentControl). In TabViewModel I open a document. VM of document in turn relies on LoadSaveVM for ...
1
vote
1answer
51 views

Android Activity Lifecycle and Singleton and mutual references persistance (memory leaks)

As I understand a singleton cannot be expected to hold persistent data in Android apps because an app may get destroyed and recreated several time in the app's "apparent lifecycle". This in itself is ...
1
vote
1answer
50 views

Lifecycle of static objects in WP

In WP application I need to save authorization cookies between page navigation. But I am afraid that Garbage Collector can grab my static System.net.CookieCollection object while user navigates ...
0
votes
3answers
87 views

Doctrine PreUpdate never worked

I have searched, and there is a lot of questions wiith the same problem, but none of them solves to my issue. I have an Entity, here is it's code: /* * @ORM\HasLifecycleCallbacks */ class MyEntity ...
0
votes
1answer
35 views

preferences getting lost after app has run for awhile

In my main activity I read some preferences public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); SharedPreferences settings = ...
1
vote
1answer
90 views

Why is getFirstVisiblePosition right when rotating to horizontal, but wrong when rotating back?

I have an Android ListView. I want the visible portion of the list to stay (roughly) the same when the user turns the device. So I save the first visible position on destruction of the activity: ...
0
votes
0answers
124 views

Object Persistence / Lifecycle in Sencha Touch 2.1

I'm struggling a bit with changing values on labels after an event and having that change stick across page loads/hides/shows. For example, I'd like to have a label on a toolbar that shows me the ...
-2
votes
1answer
36 views

Android lifecycle/multithreading

I am developing an App that uses NFC. When a new intent is discovered (NFC), the Activity goes to onStop state, then it executes onNewIntent code which executes a new Thread, in the middle of the ...
1
vote
1answer
48 views

Apache Wink resource lifecycle

I'd like to know what the expected lifecycle behavior is for a class that responds to REST requests. I have a class that's derived from javax.ws.rs.core.Application that identifies another class for ...
0
votes
2answers
184 views

How to catch an event before Page_Load

I have a recurrent problem in ASP ans its life cycle, which is to catch events BEFORE the Page_Load event raises. For example, here i'm customizing a gridview, which inherits from the gridView class. ...
-5
votes
1answer
84 views

How can I compare viewDidLoad to viewDidAppear? [duplicate]

How can I compare viewDidLoad and viewDidAppear:
0
votes
1answer
57 views

private callback methods with same name

I found that A class is permitted to override an inherited callback method of the same callback type, and in this case, the overridden method is not invoked. @MappedSuperclass class Parent { ...
-1
votes
2answers
39 views

Preserving App level data in Android

I've got about 3-5 megabytes of data handled by my app which has over 50 activities. How should I go about persisting this data? On iPhone I simply do a Array.write to a file on the app enters ...
0
votes
2answers
222 views

Android: lifecycle of AlarmManager on BroadcastReceiver

I want to wake an activity on a specific time. To do so, I (also) registered AlarmManager on a Boot complete BroadcastReceiver. As far as I know, only the Service can last forever to be alive in the ...
0
votes
0answers
52 views

Android instance life cycle

This is a very simple question, I am implementing a kind of Singleton pattern in my main activity , obviously it is not well implemented and not working as expected, but I will like to know more in ...

1 2 3 4 5 13