I am currently working on an Android App that needs several surface views in one screen and those surfaceviews are overlapping.

Right now I have two active overlapping surfaceviews, one connected to Camera and the other connected to MediaPlayer, it works most of the time but not stable, e.g. one of the surfaceview not show up sometimes.

I saw a thread from 2009(http://groups.google.com/group/android-developers/browse_thread/thread/08e7df2e96a7973d) that says overlapping surfaceviews are not supported in Android, is this still the case now? Anyone can share experience on this?

Comments are highly appreciated.

link|improve this question
feedback

2 Answers

up vote 1 down vote accepted

I found it out myself. Call setZOrderOnTop(true) on the SurfaceView I want to have on top seems solve the problem

link|improve this answer
It did it for me, too! Great, great, great, superb, perfect! :-D – Albus Dumbledore Feb 21 at 11:01
feedback

Hmm I wrote an app once that had overlapping Linear Layouts. it worked fine overlapping them with view.layout(l,t,r,b) Im not sure if its the same with Surfaceviews. How do you overlap them?

link|improve this answer
Thanks for the fast response. I think surfaceview is a bit different from other regular views. I use framelayout to overlap them.<> – Out Of Office Oct 10 '11 at 14:31
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.