I am trying to play a video from YouTube on Xamarin android, and I have been able to play videos using webview but I can not use controls like play, someone could help me or give me information, I would like to use something like Videoview but I can not play streaming videos
I'm clear I'm new programming on Android
and tried this:
string ID = "4Ec1NsEoKZ4";
// CARGAR EL ENLACE
Browser.HeightRequest = 1000;
Browser.WidthRequest = 1000;
// Browser.Source = cadena;
Browser.Source = "https://www.youtube.com/embed/ftqtdcKQA5A?rel=0&autoplay=1";
//Browser.Source = "http://www.youtube.com/watch_popup?v=" + ID;
//---------------------------------------------------------- BOTON SIGUIENTE
BTN_SIG.Clicked += (sender, e) =>
{
ID = "irQ1NhpPoJs";
Browser.Source = "https://www.youtube.com/watch_popup?v=" + ID ;
Browser.BackgroundColor = Color.Green;
};