Re: [android-developers] Multiple Surface Views

2010-05-24 Thread Dianne Hackborn
Multiple surface views works, but you don't want to have them overlap because the Z-order of them is undefined. You can draw in the main window to render overlays on top of a surface view (see the SurfaceView Overlay API demo). On Thu, May 20, 2010 at 2:10 PM, Karthik Ravi Shankar

[android-developers] Multiple Surface Views

2010-05-20 Thread Karthik Ravi Shankar
Hi, I am working on a graphics application in Android. I have a question regarding MULTIPLE SURFACE VIEWS. Can I be rendering multiple surface views at the same time. Initially, when I had two surface views in the same activity, it didn't seem to work, as it used to show only one at any time.