2

我在 Android 上的 WebView 中显示 vimeo 播放器。我的问题是:我需要使用 JavaScriptInterface 跟踪“播放”事件和“暂停”事件,甚至是“视频的进度”,我该如何实现呢?

4

1 回答 1

2

您可以在此处找到完整的实现。您还可以使用vimeo-networking-java SDK获取视频的嵌入 html 。但你需要知道的部分是:

froogaloop.addEvent('playProgress', function(data) {
               if(!showingPlayer && data.percent > 0) {
                  showingPlayer = true;
                  jQuery('.froog_container_class').show();
                  jQuery('.froog_container_class').css('height', '_windowHeight');
                  jQuery('.froog_container_class').css('width', '_windowWidth');
                  /* Most tablets I tested aren't quick enough to make this work
                     but one can still hope */
                  jQuery('#loading').fadeOut('slow');
               }
           });
于 2016-04-27T18:33:43.053 回答