Ok Erel
Thank You!!!
I solved
I added Audio Library (Windows->Libraries Manager)
Sub Globals
'These global variables will be redeclared each time the activity is created.
'These variables can only be accessed from this module.
Private BtnPlay As Button
Dim vv As VideoView
Dim copiato As Boolean
End Sub
Sub Activity_Create(FirstTime As Boolean)
'Do not forget to load the layout file created with the visual designer. For example:
Activity.LoadLayout("Pippo")
vv.Initialize("vv")
End Sub
Sub BtnPlay_Click
If copiato=False Then
copiato=True
Activity.AddView(vv, 10dip, 10dip, 250dip, 250dip)
File.Copy(File.DirAssets, "VID-20160524-WA0004.mp4", File.DirInternal, "VID-20160524-WA0004.mp4")
End If
vv.LoadVideo(File.DirInternal,"VID-20160524-WA0004.mp4")
vv.Play
End Sub
Ciao