android - ANR in activity for broadcast of Intents -
i keep getting error. can tell me means or how fix it? thanks
07-03 08:27:13.615: error/activitymanager(61): anr in com.fttech.books
07-03 08:27:13.615: error/activitymanager(61): reason: broadcast of intent { act=android.intent.action.time_tick flg=0x40000004 (has extras) }
anr stands "application not responding". message means application isn't responsive user more. exception thrown if ui thread blocked operation takes more 5 seconds. here information on topic.
android applications run entirely on single (i.e. main) thread. means application doing in main thread takes long time complete can trigger anr dialog because application not giving chance handle input event or intent broadcast.
so check code if you're doing long running operations on ui thread.
Comments
Post a Comment