Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
21answers
1k views

A company that had a successful product but went bust for not innovating?

At the company that I work we have a successful software product that did well but is now obsolete and unmaintainable. I am trying to explain that you need to innovate and replace this product with ...
18
votes
3answers
5k views

Unexpected resume of “package name” while already resumed in ''package name" Error in Android

If changing the orientation of my phone or the emulator I get the following output in LogCat: 04-09 11:55:26.290: INFO/WindowManager(52): Setting rotation to 1, animFlags=0 04-09 11:55:26.300: ...
16
votes
8answers
7k views

How do you to retrieve dimensions of a view? Getheight() and Getwidth() always return zero

I have a view made up of tablelayout, tablrows and textviews to look like a grid. I need to get the height and width of this grid. The methods getheight() and getwidth() always return 0. This ...
12
votes
2answers
250 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 ...
11
votes
1answer
216 views

What is the lifecycle and concurrency semantics of Rhino Script Engine

I am interested in the lifecycle and concurrency semantics of (Rhino) Script Engine and associated classes. Specifically: Is Bindings supposed to be thread safe? Should multiple threads be allowed ...
10
votes
9answers
1k views

Android app out of memory issues - tried everything and still at a loss

I spent 4 full days trying everything I can to figure out the memory leak in an app I'm developing, but things stopped making sense a long time ago. The app I'm developing is of social nature, so ...
10
votes
1answer
2k views

If I run mvn deploy does it build new artifacts or it just deploy the already existing artifacts in to the remote server?

Note: This question has been originally posted by Lahiru Gunathilake as an answer to another question. I'm moving it here as a separated question for the sake of clarity. When we are doing a release ...
9
votes
5answers
527 views

How to check if an activity is the last one in the activity stack for an application?

I want to know if user would return to the home screen if he exit the current activity.
9
votes
2answers
342 views

Android - Notepad tutorial - lifecycle - some work done twice?

According to the "Application Fundamentals" article, section "component lifecycle", onResume() is always called when a View becomes active, independent of the previous state. In the Notepad tutorial, ...
9
votes
4answers
1k views

How do you manage PHP Project Development Lifecycle?

I've worked on several PHP projects and always I have problems with organizing my work. Where do you develop your application - on localhost, remote server or maybe production one(!) ? When I work on ...
8
votes
6answers
882 views

Is MFC still used for new development (with any material volume)?

I've never been a big fan of MFC, but that's not really the point. I read that Microsoft is due to release a new version of MFC in 2010 and it really struck me as odd - I thought MFC was dead (no ill ...
7
votes
2answers
74 views

Object lifecycle in NHibernate

I think I'm missing something conceptually regarding NHibernate. I have an Instrument object which maps to an instruments table in my database. I also have a BrokerInstrument object which maps to my ...
7
votes
2answers
148 views

Is my approach to Winforms coding old-school

The project I'm working on is quite large and we have a framework we developed for building simple UI screens easily. The two fundamental types we have are Search (search parameters + grid of ...
7
votes
5answers
154 views

How many times does a compiled query have to recompile during the lifecycle of an application?

In a website, if I have a class: public class Provider { static readonly Func<Entities, IEnumerable<Tag>> AllTags = CompiledQuery.Compile<Entities, ...
6
votes
5answers
162 views

What's the meaning of Web Page life-cycle?

I'm new to C# and ASP.NET. I hear a lot about application and/or web page life-cycle. I want to know what's the meaning of this?
6
votes
1answer
695 views

SQLite or SharedPreferences for persistent data storage?

For persistent storage of data is there any distinct advantage of using a SQLlite database over SharedPreferences or vice versa? Currently my application data is only a couple of kilobytes in size, ...
6
votes
1answer
959 views

Android Application Class Lifecycle

The android app I am working on overrides the Application class to store lightweight state (username, gps location, etc) in static vars. Most of this state is set in OnCreate of the launch activity ...
6
votes
2answers
5k views

How do I preserve a complex object across Activity restarts?

Say I have a Java Bean object which is serializable. I want to store it away safely when an Activity goes through onDestroy() on purpose (i.e. onSaveInstanceState() is not called). I am looking for a ...
5
votes
1answer
170 views

Spark lifecycle changes between Flex 4.5 and 4.6

I have recently migrated some of my projects to the shiny new Flex 4.6 SDK. I wasn't expecting much trouble since it was only a minor release. But as a matter of fact I got hundreds of errors all over ...
5
votes
1answer
146 views

Do Scala objects survive activity restarts on Android?

I'm writing an Android app in Scala, and I haven't been able to find a clear answer to this question. My application contains an object with a bunch of static data defined in vals. The data includes ...
5
votes
1answer
1k views

Montouch: understand UIVIew lifecycle

Could you explain me the correct manner to manage the UIView lifecycle? In particular, I would know how to use Initialize, ViewDidLoad, ViewWillAppear, ViewDidAppear, ViewWillDisappear, ...
5
votes
2answers
198 views

android how long will our activity be there in the stack

My concern is, how long will our activity be there in the stack? What I mean is, when the home button is pressed from my app and then my app is launched again by clicking its icon, it will regain ...
5
votes
1answer
205 views

Which ASP.NET life cycle events fire after HttpApplication.Error?

I want to know which parts of the ASP.NET request life cycle happen after an error is handled via the HttpApplication.Error event. Specifically, which of the events listed at ...
5
votes
2answers
382 views

Problems with ASP.NET Session State / NInject / OnePerRequest behavior

This is quite a lengthy post, so bear with me. I'm not sure whether it is primarily about ASP.NET Session State behaviour, NInject, application design, or refactoring. Read on and then you can ...
5
votes
3answers
489 views

Maven Tutorial that Covers a Complete Project Lifecycle

Can anyone point to a maven tutorial / how-to that covers everything that is normally required during an OSS project: project creation, sources, build, test, integration in SCM, etc, deployment to ...
5
votes
6answers
11k views

android finish() method doesnt clear app from memory

I have an activity and I call the finish() method and the activity is not cleared from memory. After calling finish() , I see that the method onDestroy() is executed successfully (and I clear all my ...
5
votes
3answers
269 views

Life Cycle Tools Suite

I am looking to replace the life cycle tools currently used by my development teams. Tools that I'm looking for: Version Control Defect/Issue Tracking Requirements Tracking Test Case Management ...
5
votes
9answers
10k views

How to check if page is postback within reserved function pageLoad on ASP.NET AJAX

I'm looking for a way to check within pageLoad() if this method is raised during load event because of a postback/async postback or because of being loaded and access the first time. This is similar ...
4
votes
2answers
466 views

Android Activity Life Cycle - difference between onPause() and OnStop()

how does these two methods differ because both are in fact very similar and the instance itself is not destroyed while they go into these two methods as they are intermediate methods before the final ...
4
votes
4answers
238 views

Android: Under what circumstances would a Dialog appearing cause onPause() to be called?

A snippet from the Android Activities document(scroll down to the "foreground lifetime" line) says : An activity can frequently transition in and out of the foreground—for example, onPause() is ...
4
votes
6answers
84 views

Activity question (beginner)

This is my first post here on stackoverflow so I would like to say a big hi! I haved started to explore the android world just some days ago, and I am doing it via the book by Mario Zechner, ...
4
votes
1answer
531 views

Life cycle predicament with orientation change in another activity

I've got 2 activities in a tabhost. In Activity1, I handle orientation changes and when the user switches between activities fine. The problem starts when the user switches from Activity1 to ...
4
votes
5answers
2k views

Simplest Android Activity Lifecycle

I noticed that the Android Developers Activity section has been updated since I started my app, but I am still unclear what the simplest Activity Lifecycle is. As far as I can make out: onCreate, ...
4
votes
1answer
370 views

Why are Silverlight ContentControls not garbage collected?

I've been investigating why some of my controls aren't being garbage collected and noticed it's easy to prevent simple controls that inherit from ContentControl from ever being destroyed. Here's an ...
4
votes
2answers
2k views

Android application lifecycle?

Probably it's not a really complicated question, but first of all, I have no idea, what search query should I search for?! At the beginning of my application I would like to start GPS and if my ...
4
votes
2answers
1k views

Android - Lifecycle and saving an Instance State questions

So within my application is a form for creating a new user, with relevant details and information about the user. There's no problems there, it's just what happens when the user leaves the activity ...
4
votes
3answers
890 views

Glassfish war lifecycle question

What is the proper way to redeploy a new version of a running app in glassfish? I have a WAR running, and I've made changes. I thought doing an undeploy + deploy might be the right thing, but ...
4
votes
2answers
795 views

Data push to flex application from .net backend

I'm about to go into a large scale application (client-flex, server-.net). The server side is required to push data to the clients without them asking for it, this data can be tables from the DB or ...
4
votes
1answer
141 views

What are the life cycle methods of a Java Server Page?

What are the life cycle methods of a Java Server Page?
4
votes
5answers
246 views

How do you know when to shut down a project? [closed]

Hey, I've built a project over the course of a year. I've put in a lot of hours into it, and it has come out great. A bunch of people use it, and a bunch of people write plugins for it. However, I ...
4
votes
2answers
5k views

Application_End global.asax

Can anybody tell me when Application_End is triggered in a lifecycle of an application? When all sessions are ended, will Application_End be triggered automatically? + Are there any other reasons why ...
4
votes
8answers
643 views

When do you stop testing?

In your practice, what measure(s) do you use to know when it's time to stop testing an application and move it to production?
4
votes
5answers
2k views

What is the difference between a bug and a change request in MSF for CMMI?

I'm currently evaluating the MSF for CMMI process template under TFS for use on my development team, and I'm having trouble understanding the need for separate bug and change request work item types. ...
3
votes
1answer
60 views

What is the correct lifecycle of a DOM Node in Java?

I'm wondering about the correctness of the following code in terms of lifecycle management and memory management that results from it: org.w3c.dom.Document document = // some document // Some ...
3
votes
2answers
170 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 ...
3
votes
2answers
140 views

Android services: life cycle considerations

I am making an android app which will have two services that will keep sending data about the usage of the phone by the user every 24 hours. The user should execute the app, toggle the buttons to ...
3
votes
1answer
406 views

Android Application object life cycle

I can't find the Application's object (extend Application) life cycle. For example, what happens if I have a broadcast receiver which is called through Alarm. Will methods in Application being called? ...
3
votes
2answers
1k views

Android lifecycle: Fill in data in activity in onStart() or onResume()?

Should you get data via a cursor and fill in the data on the screen, such as setting the window title, in onStart() or onResume()? onStart() would seem the logical place because after onStart() the ...
3
votes
1answer
805 views

Problem with numberOfViewsInSession and multiple tabs

I have a big problem with my application and the memory. The application (java with jsf/richfaces/facelet) is used by some 7000 users simultaneously. By default, the variable ...
3
votes
2answers
715 views

Ninject caching an injected DataContext? Lifecycle Management?

I had a series of very bizarre errors being thrown in my repositories. Row not found or changed, 1 of 2 updates failed... Nothing made sense. It was as if my DataContext instance was being ...

1 2 3 4 5 7