W/ActivityManager( 81): Launch timeout has expired, giving up wake lock!
W/ActivityManager( 81): Activity idle timeout for HistoryRecord
Does anyone know what reason would cause this happens?
Thanks.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It means that the Activity cannot be displayed because it is still trying to complete execution; meanwhile the ActivityManager has timed out.
I had the same problem, and managed to resolve it by tidying up dependencies between Activity objects.
I would recommend starting up the debugger. Look at any ‘services’ that your Activity depends on (e.g. http client, parsers etc.) and check that it is not blocking. If you have ‘services’ that are shared between Activity objects, it might also be worth checking that they still exist in memory as GC may have destroyed any statically referenced service objects or objects cached as WeakReference objects.