Dim playerview As MediaView = videoPanel.GetView(0).GetView(0).Tag
playerview.Volume = 0
playerview.Play
Dim mvc As MediaViewController = videoPanel.GetView(0).GetView(1).Tag
mvc.FadeAfterMs = 3600000000 '<== Keeps controls visible for 1000 minutes
Dim topPanel As B4XView = mvc.Overlay
Dim lblx As B4XView = addControl("ToStart", Chr(0xF049), "LEFT")
lblx.Tag = playerview
topPanel.AddView(lblx, mvc.pnlBottom.Left + 65, mvc.pnlBottom.Top - mvc.pnlBottom.Height, 40, 40)
Dim lblx As B4XView = addControl("ToEnd", Chr(0xF050), "RIGHT")
lblx.Tag = playerview
topPanel.AddView(lblx, mvc.pnlBottom.Left + mvc.pnlBottom.Width - 55, mvc.pnlBottom.Top - mvc.pnlBottom.Height, 40, 40)