I have devoleped an application and the problem with that application is that Its crashing when we keep it in background for more than 15 mins

On clicking application Icon It should come to foreground but its showing application stopped/ANR message.

So what exactly I have to do so that It will not crash

I think I should concentrate on life cycle methodologies.

Please suggest me a solution for this

Help is always appreciated,

Thanks in advance.

link|improve this question

Could you attach logs? – jagsaund Jan 13 at 6:08
what kind of an application are you developing.. Is it calling anything on its background.. – Basil Jan 13 at 6:11
1  
It's hard to say somthing before reading the logcat or the codes. – Huang Jan 13 at 6:12
@Basil , yes its retrieving the latestdata from cache – Raghav Jan 13 at 6:32
see in your logcat and provide us data which is getting display in lagcat – Connecting life with Android Jan 13 at 7:05
feedback

2 Answers

Logs might not help, when it's an ANR error you are getting. Try instead to pause the application execution (Go to the debug tab, click then pause button and start inspecting the threads) and see what's going on. Most likely you have an infinite loop or deadlock somewhere that is keeping your application from responding.

link|improve this answer
feedback

If on clicking the icon it is showing Application Not Responding Dialogs then there is some variable or data is changing in 15-20 min running time of ur application and that variable or data is being accessed or processed on clicking of your icon and this is giving exception. You can provide your logs so that we can provide you more help

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.