Application Not Responding, that is, the application has no response. 2: Broadcast Timeout (10 seconds) 3: Service Timeout (20 seconds) - small probability There are generally two reasons for timeout: The UI thread tries to do only UI-related work and time-consuming work (database operations, I/O, network connection, or other operations that may hinder the UI thread). Put it in a separate thread. Use Handler to handle UI thread and thread Interaction. UI threads mainly include the following: Application Not Responding, that is, the application has no response. 2: BroadcastTimeout (10 seconds) 3: ServiceTimeout (20 seconds)-small probability There are generally two reasons for timeout: The UI thread tries to do only UI-related work and time-consuming work (database operations, I/O, network connection, or other operations that may hinder the UI thread). Put it in a separate thread. Use Handler to handle UI thread and thread Interaction. UI threads mainly include the following:
There are generally three types of ANR:
1: KeyDispatchTimeout (5 seconds) the main type of
key or touch event is not responding within a specific time
BroadcastReceiver cannot be processed within a certain time
service cannot be completed within a certain time
(1) the current event has no chance to be processed (the UI thread is processing the previous event did not complete in time or the looper is blocked for some reason)
(2) the current event is being processed, but not in time carry out
Activity: onCreate (), onResume (), onDestroy (), onKeyDown (), onClick ()
AsyncTask: onPreExecute (), onProgressUpdate (), onPostExecute (), onCancel ()
Mainthread handler: handleMessage () , post (runnable r)
other
There are generally three types of ANR:
1: KeyDispatchTimeout (5 seconds)-the main type of
key or touch event is not responding within a specific time
BroadcastReceiver cannot be processed within a certain time
service cannot be completed within a certain time
(1) the current event has no chance to be processed (the UI thread is processing the previous event did not complete in time or the looper is blocked for some reason)
(2) the current event is being processed, but not in time carry out
Activity: onCreate (), onResume (), onDestroy (), onKeyDown (), onClick ()
AsyncTask: onPreExecute (), onProgressUpdate (), onPostExecute (), onCancel ()
Main thread handler: handleMessage () , post (runnable r)
other
ANR stands for application is not responding, it is a dialog box that appears when the application is not responding. Android Applications run on the Main thread when any task takes more than 5 seconds to do his job on the UI thread, then the Android system will show this dialog ANR.
What is Application?
Fix Android Emulator Kill Error When Running Your App
How to convert milli seconds to hours, minutes and seconds in Android?
What is Context?
How to Generate signed apk with android studio
Hide/Disable soft keyboard on Activity launch: Android
How to install/ uninstall apk by command line ADB
Add Jar/Library Files as Dependency in Android Studio
How do I generate random numbers in Dart?
How to check Android version?
What is Android Fragments?
Fix Duplicate Files in APK Build.gradle Issue - RRutors
FragmentPagerAdapter deprecated, Since API 27.1.0 FragmentPagerAdapter is deprecated.
Check List for Generate Signed APK Android
What is the Different Between val and var in Kotlin?
What is Android?
How to get complete address from latitude and longitude?
What happens next when the device switches between portrait and landscape?
How to start a new activity on button click
What is ANR? How to avoid and resolve it?
How to save activity State in Android?
How to find Android Device UDID or unique ID?
What is "shared preferences" in Android ?
How to reduce APK package size?
Open PDF in Google Drive with Intent in Android - RRutors
What is ANR in android?
Fix Play Store Rejection Due to SMS Permission - RRutors
How to copy database from assets folder in android using kotlin
Set Activity to Fullscreen Mode in Android - RRutors
How to get an image resource by it's name in android?
FCM Not Receiving Notifications in Android - RRutors
Fix Behavior Subclass BottomSheetBehavior Exception - RRutors
Fix Error: Use JsonReader.setLenient(true) for Malformed JSON
What are the notifications available in android?
What are Android Versions available?
How to Get bitmap from drawable: Android
Decompile APK Files: How to Get Source Code - RRutors Guide
Android Studio project R can't find
How to get screen size (width,height) in Android?
How do I check in SQLite whether a table exists?