The Android "Application Not Responding" dialog message
0
votes
0answers
19 views
ANR timeout too long
I think I'm being a bit daft here, but I don't understand why I'm getting faulty ANR timeout values.
Example one:
public void onClick(View v) {
while(true);
}
I run this code and trigger a touch ...
0
votes
1answer
31 views
Android error ANR when I make a lot of buttons
I don't understand about this problem. My android application need to generate Custom button.
It can work if I have less than 144 buttons but if I generate button more over 144 buttons.
it can't ...
1
vote
0answers
38 views
How do I interpret ANR traces.txt when my code doesn't appear on stack?
I am trying to debug a persistent ANR ("application not responding") in my Android application.
I have read these threads:
Android - how do I investigate an ANR?
How to debug Android ANR?
...
-2
votes
0answers
30 views
Physical Keyboard Android Runtime Blackberry Q10 [closed]
When I use physical keyboard for entering just a single character, in blackberry q10,
My android application seems, to create an issue of application not responding,
the heap size is around 6.637 MB ...
0
votes
0answers
24 views
How can I stop the MediaPlayer's preparing without ANR?
I'm using MediaPlayer to play online track.But i got the problem:
try {
mMediaPlayer.reset();
mMediaPlayer.setDataSource(path);
mMediaPlayer.setAudioStreamType(AudioManager.STREAM_MUSIC);
...
0
votes
3answers
98 views
Interpreting an ANR stack trace
I'm working with an implementation of an MQTT client from the PAHO library in Android. Sometimes, the application locks up when it tried to publish a message (I think) and I can't figure out what's ...
0
votes
1answer
46 views
How to import the logcat text to Android Eclipse
How to open the logcat text in logcat tool Android/Eclipse which i got programmatically.To read it as a normal text file,it is difficult to read.I am trying to find the nature of ANR issue,If i see ...
0
votes
0answers
30 views
How to handle ANR issue when application is idle
My BB10 ported android Application ,if kept idle for 15 mins,I am getting this ANR issue,How to handle this scenario.
I am not able to reproduce in my device,But I am getting this issue in client ...
0
votes
0answers
17 views
Experiment on byte array .Clarification needed
I am posting this question just to increase my knowledge and to be clear about image and bitmap concepts.
Most of you know that we can convert bitmap to byte array and byte array to bitmap.
What i ...
0
votes
1answer
43 views
how to fix my ANR by opening new screen
when I'm opening a new screen with a button my app won't respond and show up ANR,
because it costs my app to long for loading the page but I don't know how to fix my problem.
it works on a older ...
2
votes
0answers
62 views
ANR in dev console, there are no traces to my app
Received below ANR report in my Dev console, but it didn't contains any trace to my app,This report got received only once, so i am not much worried about it, but still curious what can cause this ...
8
votes
1answer
147 views
Android freezes when there is a NullPointerException in OnClickListener.onClick (other tasks cannot start)
I have a simple setup:
CrashHandler - a class which implements Thread.UncaughtExceptionHandler;
CrashActivity - an activity which can send user reports;
MainActivity - the main app with which the ...
1
vote
1answer
25 views
Is it okay to Query the DownloadManager on the UI Thread?
The DownloadManager has a method query(). My question is if it's okay to call this method on the UI Thread, or if it should only be called from a background thread?
Can calling it ever cause an ANR?
1
vote
1answer
213 views
ANR TextureView on Galaxy S2 (GPU driver issue?)
I have multiple TextureView inside a ListView that plays an opengl video stream. The code works fine on Nexus 4 (4.2), Galaxy S3 (4.1), and HTC One (4.0.3). However, ANR happens when I try to scroll ...
0
votes
3answers
64 views
Running Temporarily Looping Android Code
I would like to make an android app that will complete its start up and then run a while loop until the user had completed a certain task. Then the code would run another function to make sure the ...
0
votes
0answers
83 views
Loop Animation on App Start Causes ANR Android
I've done a deep search here on the forum and unfortunately I haven't found the answer for my problem..
The thing is, I'm trying to make an alpha animation on an image when the app starts and it will ...
0
votes
0answers
88 views
What's wrong with my Android multi-threading?
I have an app that sends and receives data from a server. Each of these requests is made by creating a new thread to prevent locking up the UI. On my device and in testing I'm not getting any ANRs, ...
0
votes
2answers
66 views
Loading image from url but ANR shows and force closes the application
Hi my app is about parsing xml file and then load the image from url and also the text and display it in a list view, but whenever am loading the image from url and while scrolling the list view ...
3
votes
1answer
101 views
How does the Android platform detect ANR problems?
When an Android application is not responding, an ANR dialog would pop up. My question is: how does the Android platform detect ANR and make the decision to initiate such a pop-up dialog.
0
votes
1answer
69 views
Does Multiple Instances of the same Broadcast Receiver is the cause of ANR (Freezing) in my App?
My app's structure is made of a service running in the background Listening for push messages and forwards these messages to be inserted in DB, Displayed as Notifications or Sent to Chat Activity if ...
0
votes
0answers
130 views
ANR only on Android 2.2 Want to solve
I am getting an ANR on Android 2.2
I noticed it on one device and thought it was just slow, but proceeded to try to optimize. Now I tried it on an emulator so I could get the error log (because ...
1
vote
2answers
508 views
Easy Facebook Android SDK - NetworkOnMainThreadException
I have been Using this SDK http://www.easyfacebookandroidsdk.com/ to integrate Facebook in my App.
I only want to update a statur from my App. It worked great using this class in Android API 10. ...
1
vote
2answers
381 views
How to stop ASyncTask from crashing when my activity changes or destroys?
This MAY be a duplicate of another question, I am not sure. I've read similar questions, but either wasn't able to make sense of it, or wasn't able to successfully apply the given solutions.
I've ...
2
votes
3answers
218 views
Android - Forcing ANR for testing purpose
Why i can't force Android ANR with this code?
No log messages or pop up. The application is just launched lazily.
[UPDATE]
I can't get it even sleeping a View.setOnClickListener or ...
-2
votes
1answer
85 views
How to implement AsyncTask on my code? [closed]
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
//connMgr = (ConnectivityManager) ...
2
votes
1answer
157 views
ANR (Force close/Wait) while generating a big enough list
I am creating a kind of file explorer, in which if any application files are copied to phone/SD card I am showing it on an activity with dialog theme to user. For every new "app.apk" copied I am ...
0
votes
0answers
100 views
ANR caused by SpannableStringBuilder.getSpanEnd
Inside TextWatcher.afterTextChanged(Editable, ...) I am changing the Editable a bit, converting a :-) into a smiley image using editable.setSpan(ImageSpan, ...).
at ...
0
votes
0answers
86 views
ANR at AlarmManager
I am receiving an ANR from my application:
DALVIK THREADS:
(mutexes: tll=0 tsl=0 tscl=0 ghl=0 hwl=0 hwll=0)
"main" prio=5 tid=1 NATIVE
| group="main" sCount=1 dsCount=0 obj=0x4002a2a8 self=0xd138
...
1
vote
0answers
138 views
Getting an ANR error on a MediaPlayer Service
I have a service which plays music/video using MediaPlayer APIs. According to some users, in some cases – it happens while playing audio on the background –, but, trying to reproduce the issue – it ...
-1
votes
1answer
178 views
Strange ANR in StringBuilder
ANR stack from Android Developer Console:
DALVIK THREADS:
(mutexes: tll=0 tsl=0 tscl=0 ghl=0 hwl=0 hwll=0)
"main" prio=5 tid=1 SUSPENDED
| group="main" sCount=1 dsCount=0 obj=0x40022198 self=0xcec8
...
1
vote
2answers
269 views
How to recursively scan directories in Android
How can I recursively scan directories in Android and display file name(s)? I'm trying to scan, but it's slow (force close or wait). I'm using the FileWalker class given in a separate answer to this ...
0
votes
1answer
130 views
Force close App after installing on device?
My App Installs successfully on device and emulator.In emulator it starts immediately but on some devices when user clicks on open button in activity that appears after installing App,"ANR" dialog ...
1
vote
0answers
192 views
videoView seeking causes ANR
I have a videoView that plays a streaming video url via a service of the app.
When starting to play, it takes quite a long time to be prepared and start to play, but for this I show a progress ...
1
vote
2answers
487 views
Application not responding in child thread
I want to download a video from the internet in my application. Hence, I started a new thread and in that thread I started a service which downloads the file. However, it throws application not ...
1
vote
1answer
324 views
how to disable ANR dialog on android achartengine layout zoom with 15000 points
In my program, i put achartengine lineplot in a layout.
I got an ANR dialog when i want to zoom in from 15000 points display. I know it will work, i have to wait and choose wait if ANR pop out. But ...
0
votes
0answers
62 views
ANR on the emulator keyboard application
I have an application and I'm trying to test it on the emulator, and most of the times I get an ANR. However, it's not on my application, but on the keyboard application. Is there something wrong I ...
1
vote
1answer
1k views
Android Service killed by ANR
I have a Service in my app (created by a thread), and inside I create another thread and that is a TCP server.
Short time after starting the thread (and fully working, receiving and handling the ...
1
vote
1answer
184 views
Who is responsible for triggering Application Not Responding Dialog in Android?
Who is responsible for triggering Application Not Responding Dialog in Android, in case the input events are not handled within the 5 sec?
Is it
Dalvik Runtime Env
or
any specific manager ...
2
votes
0answers
292 views
ANR keyDispatchingTimedOut in Android
DALVIK THREADS:
"main" prio=5 tid=1 NATIVE
| group="main" sCount=1 dsCount=0 s=N obj=0x2aae0900 self=0xcec8
| sysTid=4608 nice=0 sched=0/0 cgrp=default handle=1876209304
at ...
0
votes
1answer
212 views
ANR on some devices when starting activitys
Im having a bug on some devices that sometimes give an ANR when starting a new activity.
I have a small degree of lag on my device (Samsung Galaxy S2) but I never get an ANR. The other devices that ...
1
vote
2answers
394 views
How to prevent a service from getting killed by Android because of uncaught exceptions?
I am investigating if there are any ways to prevent an android service being killed because of uncaught exception.
We have 10 UI apps talking to 5-6 services. The platform is Android 2.2.
Because of ...
1
vote
2answers
368 views
I'm using AsyncTask to do a long running task but it seems to still be doing it in the main ui
I'm trying to write a test app to zip and unzip a file. I found a open source library for doing the file compression/uncompression but as you can guess that does take sometime so I can't run it in the ...
2
votes
1answer
1k views
Can someone shed some light on this ANR log?
Received this ANR report on the Developer Console, and I thought it was a bit weird. Seems like it's something with File, but I'm not too sure, so I was hoping someone could shed some light on it. ...
0
votes
0answers
112 views
race condition application not responding [closed]
I am calculating the total pss (used memory) of all running process. Here is the code:
private static int memory_size; // global variable
int[] pids = new int[process_pids.size()];
pids ...
1
vote
1answer
155 views
Got ANR after device went to sleep (Android)
I have this weird ANR keydispatchingtimedout issue after my device goes to sleep and wakes up. Reproducing the bug is kind of difficult since I need 15-20 minutes of sleep to get the ANR. I'm not ...
2
votes
1answer
1k views
ANR when launching service from AppWidgetProvider
I'm developping a simple widget which update by downloading a big image file.
To do so I'm just launching a service which retrieve the image. I launch it from the onUpdate method of AppWidgetProvider.
...
2
votes
1answer
408 views
How to Avoid ANR response in Android when there is a Time delay in Server?
I am new to Android, but i know somewhat in Java, and Java EE
While communicating with the Server(webservice) , it works fine with the response i am getting from it.
But if there is any time delay ...
-1
votes
1answer
340 views
UDP chat on android
I have a school assignment about building a UDP based chat client on android. Now, my first idea was to make an activity that starts a service and the service handle all the networking and the ...
2
votes
1answer
630 views
Does icecream sandwich 4.0.3 enforces more restrictions for application developer in threading usage?
I am working on an application that was designed for tablet (specifically tested well on Motorola Xoom and Samsung Galaxy Tab 10.1). The O.S. which was used was HoneyComb.
Recently after updating the ...
1
vote
2answers
2k views
How Do you Interpret Android ANR Reports
I've googled till my fingers were sore, but I couldn't figure out how to interpret the ANR reports that are sent to developers by Google.
So at the top of the report, this intent is listed as the ...



