使用webView浏览器自动播放声音

时间:2018-12-01 23:27:13

标签: android audio webview autoplay

我正在尝试在webView浏览器中加载特定网页时自动播放声音。我在页面的html中使用此代码-

public Stream Getmp4(string fileName)
        {
            try
            {


                WebOperationContext.Current.OutgoingResponse.ContentType = "video/mp4";

                Stream st = new FileStream(fileName, FileMode.Open, FileAccess.Read, FileShare.ReadWrite);




                return st;
            }
            catch (Exception ex)
            {

                throw;
            }
        }

,但声音不会在webView中自动播放。它可以在其他浏览器(如Android浏览器)上自动播放。有人对此有解决方案吗?

0 个答案:

没有答案