0

我正在尝试在 android webview 中播放视频。我做了我的谷歌研究并尝试了所有建议的例子,但不幸的是它们都不起作用。这是我正在使用的:

webview.setWebChromeClient(new WebChromeClient() {

         @Override
         public void onShowCustomView(View view, CustomViewCallback callback) {
             super.onShowCustomView(view, callback);
             if (view instanceof FrameLayout){
                 FrameLayout frame = (FrameLayout) view;
                 if (frame.getFocusedChild() instanceof VideoView){
                     VideoView video = (VideoView) frame.getFocusedChild();
                     frame.removeView(video);
                     setContentView(video);
                     video.setOnCompletionListener(new OnCompletionListener() {

                        @Override
                        public void onCompletion(MediaPlayer mp) {
                            mp.stop();
                            setContentView(R.layout.loaddata_qrurl);
                        }
                    });
                     video.setOnErrorListener(new OnErrorListener() {

                        @Override
                        public boolean onError(MediaPlayer mp, int what, int extra) {
                            return false;
                        }
                    });
                     video.start();
                 }
             }
         }
         });

请问有什么想法吗?

4

2 回答 2

0

这在 android 2.3 及更高版本中是可能的。只需在 webview 中调用 index.html 页面。并将您的视频和 index.html 放在资产文件夹中。根据我的经验,这是可行的。

  1. 索引.html

    <!DOCTYPE html>
    <html>
    <head>
    </head>
    <body>
    what is your name ?
        <input id="name" value="" />
        <button onClick="sayhello()">Say hello</button>
    
        <video width="260" height="320" controls="controls">
            <source src="swipe_tabs.mp4" type="video/mp4" />
            <object data="swipe_tabs.mp4" width="240" height="320">
                <embed src="swipe_tabs.mp4" width="240" height="320" />
            </object>
        </video> 
    </body>
    </html>
    
于 2012-05-10T10:18:35.370 回答
0

我将视频文件放在 RAW 文件夹中,并通过以下代码访问 default.html 文件中的视频文件:

video.src ="android.resource://ProjectPackageAame/raw/test";
video.type = "video/mp4";      
video.load(); 
video.play();

它像我想要的那样播放视频。还在 AndroidManifest 文件中添加了以下行。

 android:hardwareAccelerated="true"

尝试这个

于 2013-12-26T07:22:36.023 回答