Re: [android-developers] ANR on android.view.GLES20Canvas.nDrawDisplayList(Native Method)

2012-10-12 Thread Chris Sarbora
Is there a possibility that you could be recursively generating an enormous view tree? Source for the cursor adapter, and any relevant custom views would be useful. On Friday, October 12, 2012 10:59:50 AM UTC-7, Gaurav wrote: > > Hi Romain, > The ANR was observed in an activity that uses a gr

Re: [android-developers] ANR on android.view.GLES20Canvas.nDrawDisplayList(Native Method)

2012-10-12 Thread Gaurav
Hi Romain, The ANR was observed in an activity that uses a gridview to display small images and metadata. The gridview is backed by a cursor adapter that feeds it views. There is not much to draw here. Hence it would be great if you could point me to some guidelines regarding potential root ca

Re: [android-developers] ANR on android.view.GLES20Canvas.nDrawDisplayList(Native Method)

2012-10-12 Thread Gaurav
Hi Romain, Thanks for the quick turnaround. I do not think I can pursue a bug in the OpenGLDriver or the platform without information about the device or Android OS version in particular. However you also mentioned drawing too much. How much is too much? I would appreciate any guidelines regar

Re: [android-developers] ANR on android.view.GLES20Canvas.nDrawDisplayList(Native Method)

2012-10-12 Thread Romain Guy
Your application is involved :) This stack trace indicates that the ANR occurs while drawing your application. It could occur for a number of reasons: your app is doing way too much drawing, bug in the platform, bug in the OpenGL driver, etc. On Fri, Oct 12, 2012 at 10:18 AM, Gaurav wrote: > Hi,

[android-developers] ANR on android.view.GLES20Canvas.nDrawDisplayList(Native Method)

2012-10-12 Thread Gaurav
Hi, I am trying to investigate the following ANR. Unfortunately the report does not contain any information regarding device or Android OS version. The entire stack trace has the main thread doing something in the platform with nothing in my application seemingly involved. Any clues regarding