I try to show a VideoView
on top of a SurfaceView
. But it isn\'t visible but reacts on clicks (MediaController appears and the sound plays). The vi
I don't think that you can have overlapping SurfaceViews, according to this thread answered by an Android framework engineer:
Sorry, you can't do this -- because surface views are very special and not really views (the surface is a separate window Z-ordered with your own), their Z-ordering does not match your views. A surface view is a big, heavy object; you are not intended to treat SurfaceView like a regular view in this way.