Your async task's worker function crashes with the exception below. Some part of your code tries to parse an integer from "Acc", which is not a valid string representation of a number.

The exception here is unchecked, so the compiler didn't make you wrap the call to Integer.parse() with a catch block, but it can happen nonetheless (as you can see).

24.09.2011 23:18, bob пишет:
Caused by: java.lang.NumberFormatException: unable to parse 'Acc' as
integer

--
Kostya Vasilyev

--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to