Re: [android-developers] Re: GLSurfaceView onPause blocked in Froyo

2010-05-28 Thread Leigh McRae
Could be the docs are wrong. Usually calls that start with 'on' are callbacks. Anyway I would suggest just using SurfaceView and create your own thread and manage it. That is what I did and it's also more portable. Leigh On 5/28/2010 2:20 AM, KK wrote: I am calling it because the documentat

[android-developers] Re: GLSurfaceView onPause blocked in Froyo

2010-05-27 Thread KK
I am calling it because the documentation tells so. public void onPause () Since: API Level 3 Inform the view that the activity is paused. The owner of this view must call this method when the activity is paused. Calling this method will pause the rendering thread. Must not be called before a ren

[android-developers] Re: GLSurfaceView onPause blocked in Froyo

2010-05-26 Thread Indicator Veritatis
The first thing that pops out as odd, possibly related to your problem, is that as you describe it, you are calling onPause() and onResume() yourself. These are meant to be called by the system, not the API user (you). Are you really calling these yourself? If so, why? On May 26, 6:25 am, KK wrot