tags:

views:

14

answers:

1

Hello.

I am trying to code an app where you can paint (Finger paint) free hand on a running video in a VideoView. I have the two things running sepaerately but not together. I can draw my paint on a blanc screen and i can play my video on my videoView, which is implementet in an xml layout.

Is there a way to overlay the xml videoview View with an other View which can be drawable?

A: 

The FrameLayout is designed for overlaying multiple views on top of each other. Provided your paint view is mostly transparent, you should be able to overlay it over the video view in a FrameLayout.

Mayra