Android WebView에서 전체 화면으로 HTML5 비디오 재생


92

글쎄, 나는 이미 며칠 동안 안드로이드 WebView에서 HTML5 비디오를 전체 화면 모드로 표시하는 방법을 검색했습니다.

내 웹뷰에서 HTML5 비디오를 재생했습니다. 전체 화면 모드에서 비디오를 표시 할 때 문제가 발생합니다.

내가 알아 낸 것처럼 Android에는 <video> 태그를 처리하는 두 가지 방법이 있습니다.

  1. 안드로이드 버전 <= 2.3.3 에서 onShowCustomView 메서드가 실행되고 VideoView 인스턴스를 가질 수 있으며 비디오가 완료되면 리스너를 설정하고 컨트롤러를 설정하는 등의 작업을 수행 할 수 있습니다.

  2. ICS (및 아마도 3.0 이상) 에서 <video>가 다른 방식으로 처리되는 것처럼 보입니다. HTML5 동영상이 재생 될 때 onShowCustomView가 일반 모드에서 호출되지 않습니다. WebView 내부에 동영상을 재생하는 내부 비즈니스가 있고 <video> 태그에 정의 된 모든 컨트롤이 표시되는 것 같습니다. 어떤 식 으로든 액세스 할 수 없습니다. 실제로 비디오가 일반 모드에서 재생되면 컨트롤이 있고 작동하기 때문에 괜찮습니다.

이로 인해 큰 문제가 발생했습니다. 전체 화면 모드에서 비디오를 표시 할 때 onShowCustomView가 호출되지만 ICS에서 "view"매개 변수는 VideoView의 인스턴스가 아닙니다.

인스턴스가 HTML5VideoFullScreen 클래스의 비공개 내부 클래스 인 VideoSurfaceView라는 것을 알았습니다. 이 내부 클래스에 액세스 할 수있는 유일한 방법은 리플렉션을 통해서입니다.

이 클래스에 대한 GrepCode를 살펴본 후 VideoView와 달리 HTML5VideoFullScreen $ VideoSurfaceView에는 이벤트를 수신하거나 해당 컨트롤에 액세스 할 수있는 MediaPlayer 인스턴스가 없다는 것을 알게되었습니다. 내가 할 수있는 유일한 일은이 VideoSurfaceView를있는 그대로 가져다가 제어하지 않고 전체 화면 레이아웃에 넣는 것입니다.

결론-전체 화면으로 비디오를 표시 할 때 비디오가 언제 끝나는 지 모르고 컨트롤이 표시되지 않습니다. 이것은 매우 슬프다. 전체 화면을 닫는 트리거를 가져올 수 없습니다.

몇 가지 실패한 해결 방법을 시도했습니다.

  1. 리플렉션 : 내부 클래스 VideoSurfaceView에서 MediaPlayer 멤버를 보유하는 HTML5VideoFullScreen 인스턴스에 도달하려고했습니다. 나는 그것을 얻을 수 없었고 이것이 가능하다는 것을 확신하지 못합니다 (ViewSurfaceView는 소유자의 인스턴스를 보유하지 않습니다).

  2. Javascript (예 : onended)를 통해 비디오 이벤트에 등록하고 JavascriptInterface를 통해 JAVA에서 필요한 것을 처리합니다.이 작업을 수행하는 동안 다른 문제가 발생했기 때문에이 솔루션이 신뢰할 수 없음을 발견했습니다. <video> 태그가 중첩 될 수 있습니다. . iframe 소스가 내 것이 아니고 콘텐츠를 가져올 수 없습니다 (getElementById 또는 getElementsByTagName [i]는 null입니다). 즉, iframe 내부의 <video> 요소에 도달 할 수 없습니다.

나는 여전히 해결책을 찾고 있으며,이 문제에 대해 거의 쓰여지지 않았습니다. 누구든지 그것을 해결할 수 있었습니까? 도움을 주시면 감사하겠습니다!

VideoView 클래스 : 여기 (MediaPlayer 포함)

HTML5VideoFullScreen $ VideoSurfaceView 클래스 : 여기 (MediaPlayer가 없음)


당신과 같은 문제이고 같은 결론에 도달했습니다. 나는 이것을 약 20 시간 동안 일했지만 적어도 20 시간 이상은 포기하지 않을 것입니다 (실제 작업 시간입니다). 해결책을 찾으면 알려 드리겠습니다. 한편,이 질문은 20 일 전에 질문되었으므로 여전히 문제를 해결하려고하거나 다른 해결 방법을 적용 했습니까?
cprcrack 2013-04-23

그런데 HTML5VideoFullScreen의 소스 코드를 간략히 살펴보면 상위 클래스 HTML5VideoView에 MediaPlayer가 포함되어 있음을 알 수 있습니다.
cprcrack

답변:


176

2014/10 편집 : 대중의 요구에 따라이를 유지 관리하고 GitHub로 이동하고 있습니다. 최신 버전은 cprcrack / VideoEnabledWebView 를 확인하십시오 . 이 답변은 참고 용으로 만 보관됩니다.

2014/01 편집 : 더 나은 이해를 위해 더 많은 예제 코드를 요청하는 사용자를 위해 nonVideoLayout, videoLayout 및 videoLoading보기를 포함하도록 예제 사용을 개선했습니다.

2013/12 편집 : Sony Xperia 장치 호환성과 관련된 일부 버그 수정이 실제로 모든 장치에 영향을 미쳤습니다.

2013/11 편집 : 새로운 Chromium 웹뷰와 함께 Android 4.4 KitKat (API 레벨 19)가 출시 된 후 다시 열심히 노력해야했습니다. 몇 가지 개선이 이루어졌습니다. 이 새 버전으로 업데이트해야합니다. 나는 WTFPL따라이 소스를 공개 합니다.

2013/04 편집 : 1 주일의 노력 끝에 마침내 필요한 모든 것을 얻었습니다. 제가 만든이 두 가지 일반 클래스가 모든 문제를 해결할 수 있다고 생각합니다.

VideoEnabledWebChromeClientVideoEnabledWebView추가 하는 기능이 필요하지 않은 경우 단독으로 사용할 수 있습니다 . 그러나 VideoEnabledWebView항상 VideoEnabledWebChromeClient. 두 수업의 모든 의견을주의 깊게 읽어 보시기 바랍니다 .

VideoEnabledWebChromeClient 클래스

import android.media.MediaPlayer;
import android.media.MediaPlayer.OnCompletionListener;
import android.media.MediaPlayer.OnErrorListener;
import android.media.MediaPlayer.OnPreparedListener;
import android.view.SurfaceView;
import android.view.View;
import android.view.ViewGroup;
import android.view.ViewGroup.LayoutParams;
import android.webkit.WebChromeClient;
import android.widget.FrameLayout;

/**
 * This class serves as a WebChromeClient to be set to a WebView, allowing it to play video.
 * Video will play differently depending on target API level (in-line, fullscreen, or both).
 *
 * It has been tested with the following video classes:
 * - android.widget.VideoView (typically API level <11)
 * - android.webkit.HTML5VideoFullScreen$VideoSurfaceView/VideoTextureView (typically API level 11-18)
 * - com.android.org.chromium.content.browser.ContentVideoView$VideoSurfaceView (typically API level 19+)
 * 
 * Important notes:
 * - For API level 11+, android:hardwareAccelerated="true" must be set in the application manifest.
 * - The invoking activity must call VideoEnabledWebChromeClient's onBackPressed() inside of its own onBackPressed().
 * - Tested in Android API levels 8-19. Only tested on http://m.youtube.com.
 *
 * @author Cristian Perez (http://cpr.name)
 *
 */
public class VideoEnabledWebChromeClient extends WebChromeClient implements OnPreparedListener, OnCompletionListener, OnErrorListener
{
    public interface ToggledFullscreenCallback
    {
        public void toggledFullscreen(boolean fullscreen);
    }

    private View activityNonVideoView;
    private ViewGroup activityVideoView;
    private View loadingView;
    private VideoEnabledWebView webView;

    private boolean isVideoFullscreen; // Indicates if the video is being displayed using a custom view (typically full-screen)
    private FrameLayout videoViewContainer;
    private CustomViewCallback videoViewCallback;

    private ToggledFullscreenCallback toggledFullscreenCallback;

    /**
     * Never use this constructor alone.
     * This constructor allows this class to be defined as an inline inner class in which the user can override methods
     */
    @SuppressWarnings("unused")
    public VideoEnabledWebChromeClient()
    {
    }

    /**
     * Builds a video enabled WebChromeClient.
     * @param activityNonVideoView A View in the activity's layout that contains every other view that should be hidden when the video goes full-screen.
     * @param activityVideoView A ViewGroup in the activity's layout that will display the video. Typically you would like this to fill the whole layout.
     */
    @SuppressWarnings("unused")
    public VideoEnabledWebChromeClient(View activityNonVideoView, ViewGroup activityVideoView)
    {
        this.activityNonVideoView = activityNonVideoView;
        this.activityVideoView = activityVideoView;
        this.loadingView = null;
        this.webView = null;
        this.isVideoFullscreen = false;
    }

    /**
     * Builds a video enabled WebChromeClient.
     * @param activityNonVideoView A View in the activity's layout that contains every other view that should be hidden when the video goes full-screen.
     * @param activityVideoView A ViewGroup in the activity's layout that will display the video. Typically you would like this to fill the whole layout.
     * @param loadingView A View to be shown while the video is loading (typically only used in API level <11). Must be already inflated and without a parent view.
     */
    @SuppressWarnings("unused")
    public VideoEnabledWebChromeClient(View activityNonVideoView, ViewGroup activityVideoView, View loadingView)
    {
        this.activityNonVideoView = activityNonVideoView;
        this.activityVideoView = activityVideoView;
        this.loadingView = loadingView;
        this.webView = null;
        this.isVideoFullscreen = false;
    }

    /**
     * Builds a video enabled WebChromeClient.
     * @param activityNonVideoView A View in the activity's layout that contains every other view that should be hidden when the video goes full-screen.
     * @param activityVideoView A ViewGroup in the activity's layout that will display the video. Typically you would like this to fill the whole layout.
     * @param loadingView A View to be shown while the video is loading (typically only used in API level <11). Must be already inflated and without a parent view.
     * @param webView The owner VideoEnabledWebView. Passing it will enable the VideoEnabledWebChromeClient to detect the HTML5 video ended event and exit full-screen.
     * Note: The web page must only contain one video tag in order for the HTML5 video ended event to work. This could be improved if needed (see Javascript code).
     */
    public VideoEnabledWebChromeClient(View activityNonVideoView, ViewGroup activityVideoView, View loadingView, VideoEnabledWebView webView)
    {
        this.activityNonVideoView = activityNonVideoView;
        this.activityVideoView = activityVideoView;
        this.loadingView = loadingView;
        this.webView = webView;
        this.isVideoFullscreen = false;
    }

    /**
     * Indicates if the video is being displayed using a custom view (typically full-screen)
     * @return true it the video is being displayed using a custom view (typically full-screen)
     */
    public boolean isVideoFullscreen()
    {
        return isVideoFullscreen;
    }

    /**
     * Set a callback that will be fired when the video starts or finishes displaying using a custom view (typically full-screen)
     * @param callback A VideoEnabledWebChromeClient.ToggledFullscreenCallback callback
     */
    public void setOnToggledFullscreen(ToggledFullscreenCallback callback)
    {
        this.toggledFullscreenCallback = callback;
    }

    @Override
    public void onShowCustomView(View view, CustomViewCallback callback)
    {
        if (view instanceof FrameLayout)
        {
            // A video wants to be shown
            FrameLayout frameLayout = (FrameLayout) view;
            View focusedChild = frameLayout.getFocusedChild();

            // Save video related variables
            this.isVideoFullscreen = true;
            this.videoViewContainer = frameLayout;
            this.videoViewCallback = callback;

            // Hide the non-video view, add the video view, and show it
            activityNonVideoView.setVisibility(View.INVISIBLE);
            activityVideoView.addView(videoViewContainer, new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));
            activityVideoView.setVisibility(View.VISIBLE);

            if (focusedChild instanceof android.widget.VideoView)
            {
                // android.widget.VideoView (typically API level <11)
                android.widget.VideoView videoView = (android.widget.VideoView) focusedChild;

                // Handle all the required events
                videoView.setOnPreparedListener(this);
                videoView.setOnCompletionListener(this);
                videoView.setOnErrorListener(this);
            }
            else
            {
                // Other classes, including:
                // - android.webkit.HTML5VideoFullScreen$VideoSurfaceView, which inherits from android.view.SurfaceView (typically API level 11-18)
                // - android.webkit.HTML5VideoFullScreen$VideoTextureView, which inherits from android.view.TextureView (typically API level 11-18)
                // - com.android.org.chromium.content.browser.ContentVideoView$VideoSurfaceView, which inherits from android.view.SurfaceView (typically API level 19+)

                // Handle HTML5 video ended event only if the class is a SurfaceView
                // Test case: TextureView of Sony Xperia T API level 16 doesn't work fullscreen when loading the javascript below
                if (webView != null && webView.getSettings().getJavaScriptEnabled() && focusedChild instanceof SurfaceView)
                {
                    // Run javascript code that detects the video end and notifies the Javascript interface
                    String js = "javascript:";
                    js += "var _ytrp_html5_video_last;";
                    js += "var _ytrp_html5_video = document.getElementsByTagName('video')[0];";
                    js += "if (_ytrp_html5_video != undefined && _ytrp_html5_video != _ytrp_html5_video_last) {";
                    {
                        js += "_ytrp_html5_video_last = _ytrp_html5_video;";
                        js += "function _ytrp_html5_video_ended() {";
                        {
                            js += "_VideoEnabledWebView.notifyVideoEnd();"; // Must match Javascript interface name and method of VideoEnableWebView
                        }
                        js += "}";
                        js += "_ytrp_html5_video.addEventListener('ended', _ytrp_html5_video_ended);";
                    }
                    js += "}";
                    webView.loadUrl(js);
                }
            }

            // Notify full-screen change
            if (toggledFullscreenCallback != null)
            {
                toggledFullscreenCallback.toggledFullscreen(true);
            }
        }
    }

    @Override @SuppressWarnings("deprecation")
    public void onShowCustomView(View view, int requestedOrientation, CustomViewCallback callback) // Available in API level 14+, deprecated in API level 18+
    {
        onShowCustomView(view, callback);
    }

    @Override
    public void onHideCustomView()
    {
        // This method should be manually called on video end in all cases because it's not always called automatically.
        // This method must be manually called on back key press (from this class' onBackPressed() method).

        if (isVideoFullscreen)
        {
            // Hide the video view, remove it, and show the non-video view
            activityVideoView.setVisibility(View.INVISIBLE);
            activityVideoView.removeView(videoViewContainer);
            activityNonVideoView.setVisibility(View.VISIBLE);

            // Call back (only in API level <19, because in API level 19+ with chromium webview it crashes)
            if (videoViewCallback != null && !videoViewCallback.getClass().getName().contains(".chromium."))
            {
                videoViewCallback.onCustomViewHidden();
            }

            // Reset video related variables
            isVideoFullscreen = false;
            videoViewContainer = null;
            videoViewCallback = null;

            // Notify full-screen change
            if (toggledFullscreenCallback != null)
            {
                toggledFullscreenCallback.toggledFullscreen(false);
            }
        }
    }

    @Override
    public View getVideoLoadingProgressView() // Video will start loading
    {
        if (loadingView != null)
        {
            loadingView.setVisibility(View.VISIBLE);
            return loadingView;
        }
        else
        {
            return super.getVideoLoadingProgressView();
        }
    }

    @Override
    public void onPrepared(MediaPlayer mp) // Video will start playing, only called in the case of android.widget.VideoView (typically API level <11)
    {
        if (loadingView != null)
        {
            loadingView.setVisibility(View.GONE);
        }
    }

    @Override
    public void onCompletion(MediaPlayer mp) // Video finished playing, only called in the case of android.widget.VideoView (typically API level <11)
    {
        onHideCustomView();
    }

    @Override
    public boolean onError(MediaPlayer mp, int what, int extra) // Error while playing video, only called in the case of android.widget.VideoView (typically API level <11)
    {
        return false; // By returning false, onCompletion() will be called
    }

    /**
     * Notifies the class that the back key has been pressed by the user.
     * This must be called from the Activity's onBackPressed(), and if it returns false, the activity itself should handle it. Otherwise don't do anything.
     * @return Returns true if the event was handled, and false if was not (video view is not visible)
     */
    public boolean onBackPressed()
    {
        if (isVideoFullscreen)
        {
            onHideCustomView();
            return true;
        }
        else
        {
            return false;
        }
    }

}

VideoEnabledWebView 클래스

import android.annotation.SuppressLint;
import android.content.Context;
import android.os.Handler;
import android.os.Looper;
import android.util.AttributeSet;
import android.webkit.WebChromeClient;
import android.webkit.WebView;

import java.util.Map;

/**
 * This class serves as a WebView to be used in conjunction with a VideoEnabledWebChromeClient.
 * It makes possible:
 * - To detect the HTML5 video ended event so that the VideoEnabledWebChromeClient can exit full-screen.
 * 
 * Important notes:
 * - Javascript is enabled by default and must not be disabled with getSettings().setJavaScriptEnabled(false).
 * - setWebChromeClient() must be called before any loadData(), loadDataWithBaseURL() or loadUrl() method.
 *
 * @author Cristian Perez (http://cpr.name)
 *
 */
public class VideoEnabledWebView extends WebView
{
    public class JavascriptInterface
    {
        @android.webkit.JavascriptInterface
        public void notifyVideoEnd() // Must match Javascript interface method of VideoEnabledWebChromeClient
        {
            // This code is not executed in the UI thread, so we must force that to happen
            new Handler(Looper.getMainLooper()).post(new Runnable()
            {
                @Override
                public void run()
                {
                    if (videoEnabledWebChromeClient != null)
                    {
                        videoEnabledWebChromeClient.onHideCustomView();
                    }
                }
            });
        }
    }

    private VideoEnabledWebChromeClient videoEnabledWebChromeClient;
    private boolean addedJavascriptInterface;

    public VideoEnabledWebView(Context context)
    {
        super(context);
        addedJavascriptInterface = false;
    }

    @SuppressWarnings("unused")
    public VideoEnabledWebView(Context context, AttributeSet attrs)
    {
        super(context, attrs);
        addedJavascriptInterface = false;
    }

    @SuppressWarnings("unused")
    public VideoEnabledWebView(Context context, AttributeSet attrs, int defStyle)
    {
        super(context, attrs, defStyle);
        addedJavascriptInterface = false;
    }

    /**
     * Indicates if the video is being displayed using a custom view (typically full-screen)
     * @return true it the video is being displayed using a custom view (typically full-screen)
     */
    public boolean isVideoFullscreen()
    {
        return videoEnabledWebChromeClient != null && videoEnabledWebChromeClient.isVideoFullscreen();
    }

    /**
     * Pass only a VideoEnabledWebChromeClient instance.
     */
    @Override @SuppressLint("SetJavaScriptEnabled")
    public void setWebChromeClient(WebChromeClient client)
    {
        getSettings().setJavaScriptEnabled(true);

        if (client instanceof VideoEnabledWebChromeClient)
        {
            this.videoEnabledWebChromeClient = (VideoEnabledWebChromeClient) client;
        }

        super.setWebChromeClient(client);
    }

    @Override
    public void loadData(String data, String mimeType, String encoding)
    {
        addJavascriptInterface();
        super.loadData(data, mimeType, encoding);
    }

    @Override
    public void loadDataWithBaseURL(String baseUrl, String data, String mimeType, String encoding, String historyUrl)
    {
        addJavascriptInterface();
        super.loadDataWithBaseURL(baseUrl, data, mimeType, encoding, historyUrl);
    }

    @Override
    public void loadUrl(String url)
    {
        addJavascriptInterface();
        super.loadUrl(url);
    }

    @Override
    public void loadUrl(String url, Map<String, String> additionalHttpHeaders)
    {
        addJavascriptInterface();
        super.loadUrl(url, additionalHttpHeaders);
    }

    private void addJavascriptInterface()
    {
        if (!addedJavascriptInterface)
        {
            // Add javascript interface to be called when the video ends (must be done before page load)
            addJavascriptInterface(new JavascriptInterface(), "_VideoEnabledWebView"); // Must match Javascript interface name of VideoEnabledWebChromeClient

            addedJavascriptInterface = true;
        }
    }

}

사용 예 :

VideoEnabledWebView 및 기타 사용 된 뷰를 넣은 기본 레이아웃 activity_main.xml :

<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <!-- View that will be hidden when video goes fullscreen -->
    <RelativeLayout
        android:id="@+id/nonVideoLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <your.package.VideoEnabledWebView
            android:id="@+id/webView"
            android:layout_width="match_parent"
            android:layout_height="match_parent" />

    </RelativeLayout>   

    <!-- View where the video will be shown when video goes fullscreen -->
    <RelativeLayout
        android:id="@+id/videoLayout"
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <!-- View that will be shown while the fullscreen video loads (maybe include a spinner and a "Loading..." message) -->
        <View
            android:id="@+id/videoLoading"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_centerInParent="true"
            android:visibility="invisible" />

    </RelativeLayout>

</RelativeLayout>

활동의 onCreate () 에서 초기화합니다.

private VideoEnabledWebView webView;
private VideoEnabledWebChromeClient webChromeClient;

@Override
protected void onCreate(Bundle savedInstanceState)
{
    super.onCreate(savedInstanceState);

    // Set layout
    setContentView(R.layout.activity_main);

    // Save the web view
    webView = (VideoEnabledWebView) findViewById(R.id.webView);

    // Initialize the VideoEnabledWebChromeClient and set event handlers
    View nonVideoLayout = findViewById(R.id.nonVideoLayout); // Your own view, read class comments
    ViewGroup videoLayout = (ViewGroup) findViewById(R.id.videoLayout); // Your own view, read class comments
    View loadingView = getLayoutInflater().inflate(R.layout.view_loading_video, null); // Your own view, read class comments
    webChromeClient = new VideoEnabledWebChromeClient(nonVideoLayout, videoLayout, loadingView, webView) // See all available constructors...
    {
        // Subscribe to standard events, such as onProgressChanged()...
        @Override
        public void onProgressChanged(WebView view, int progress)
        {
            // Your code...
        }
    };
    webChromeClient.setOnToggledFullscreen(new VideoEnabledWebChromeClient.ToggledFullscreenCallback()
    {
        @Override
        public void toggledFullscreen(boolean fullscreen)
        {
            // Your code to handle the full-screen change, for example showing and hiding the title bar. Example:
            if (fullscreen)
            {
                WindowManager.LayoutParams attrs = getWindow().getAttributes();
                attrs.flags |= WindowManager.LayoutParams.FLAG_FULLSCREEN;
                attrs.flags |= WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON;
                getWindow().setAttributes(attrs);
                if (android.os.Build.VERSION.SDK_INT >= 14)
                {
                    getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_LOW_PROFILE);
                }
            }
            else
            {
                WindowManager.LayoutParams attrs = getWindow().getAttributes();
                attrs.flags &= ~WindowManager.LayoutParams.FLAG_FULLSCREEN;
                attrs.flags &= ~WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON;
                getWindow().setAttributes(attrs);
                if (android.os.Build.VERSION.SDK_INT >= 14)
                {
                    getWindow().getDecorView().setSystemUiVisibility(View.SYSTEM_UI_FLAG_VISIBLE);
                }
            }

        }
    });
    webView.setWebChromeClient(webChromeClient);

    // Navigate everywhere you want, this classes have only been tested on YouTube's mobile site
    webView.loadUrl("http://m.youtube.com");
}

그리고 onBackPressed () 를 호출하는 것을 잊지 마세요 .

@Override
public void onBackPressed()
{
    // Notify the VideoEnabledWebChromeClient, and handle it ourselves if it doesn't handle it
    if (!webChromeClient.onBackPressed())
    {
        if (webView.canGoBack())
        {
            webView.goBack();
        }
        else
        {
            // Close app (presumably)
            super.onBackPressed();
        }
    }
}

1
제안하신 내용은 동영상이 API <= 10에서만 종료 될 때 알림을
보냅니다

4
당신의 노력에 감사드립니다! 그러나 <video>가 <iframe> 아래에 있으면 도달 할 수 없으므로 javacsript 부분이 완벽하지 않습니다. 귀하의 코드는 매우 전문적이고 인상적입니다.
nbtk 2013

3
이 답변의 코드를 통합하면 stackoverflow.com/questions/20379478/… 위에서 제기 한 문제를 해결할 수 있습니다.
Wienke Giezeman

2
업그레이드가 필요하고 Android v4.4.4 이상에서 작동하지 않습니다. onplay에 옵션을 추가하고 자동으로 전체 화면으로 이동하십시오. 이 코드에서 vimeo를 구현할 수 있습니까? github에서 코드를 공유해 주셔서 감사합니다. @cprcrack
플로리다

2
그것은 최신 adroid 버전에서 작동하지 않습니다 ... 5.0, 6.0,7.0 이상
UMAR-MOBITSOLUTIONS

11

Android 9.0 버전 에서 테스트 됨

어떤 답변도 나를 위해 일하지 않았습니다. 이것이 마지막 일입니다.

import android.annotation.SuppressLint;
import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.webkit.WebChromeClient;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
import android.widget.FrameLayout;
import android.widget.ProgressBar;

public class MainActivity extends AppCompatActivity {

    WebView mWebView;


    @SuppressLint("SetJavaScriptEnabled")
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);


        mWebView = (WebView) findViewById(R.id.webView);


        mWebView.setWebViewClient(new WebViewClient());
        mWebView.setWebChromeClient(new MyChrome());
        WebSettings webSettings = mWebView.getSettings();
        webSettings.setJavaScriptEnabled(true);
        webSettings.setAllowFileAccess(true);
        webSettings.setAppCacheEnabled(true);

       if (savedInstanceState == null) {
          mWebView.loadUrl("https://www.youtube.com/");
       }

    }


    private class MyChrome extends WebChromeClient {

        private View mCustomView;
        private WebChromeClient.CustomViewCallback mCustomViewCallback;
        protected FrameLayout mFullscreenContainer;
        private int mOriginalOrientation;
        private int mOriginalSystemUiVisibility;

        MyChrome() {}

        public Bitmap getDefaultVideoPoster()
        {
            if (mCustomView == null) {
                return null;
            }
            return BitmapFactory.decodeResource(getApplicationContext().getResources(), 2130837573);
        }

        public void onHideCustomView()
        {
            ((FrameLayout)getWindow().getDecorView()).removeView(this.mCustomView);
            this.mCustomView = null;
            getWindow().getDecorView().setSystemUiVisibility(this.mOriginalSystemUiVisibility);
            setRequestedOrientation(this.mOriginalOrientation);
            this.mCustomViewCallback.onCustomViewHidden();
            this.mCustomViewCallback = null;
        }

        public void onShowCustomView(View paramView, WebChromeClient.CustomViewCallback paramCustomViewCallback)
        {
            if (this.mCustomView != null)
            {
                onHideCustomView();
                return;
            }
            this.mCustomView = paramView;
            this.mOriginalSystemUiVisibility = getWindow().getDecorView().getSystemUiVisibility();
            this.mOriginalOrientation = getRequestedOrientation();
            this.mCustomViewCallback = paramCustomViewCallback;
            ((FrameLayout)getWindow().getDecorView()).addView(this.mCustomView, new FrameLayout.LayoutParams(-1, -1));
            getWindow().getDecorView().setSystemUiVisibility(3846 | View.SYSTEM_UI_FLAG_LAYOUT_STABLE);
        }
    }

 @Override
    protected void onSaveInstanceState(Bundle outState) {
        super.onSaveInstanceState(outState);
        mWebView.saveState(outState);
    }

    @Override
    protected void onRestoreInstanceState(Bundle savedInstanceState) {
        super.onRestoreInstanceState(savedInstanceState);
        mWebView.restoreState(savedInstanceState);
    }
}

에서 의 AndroidManifest.xml

<activity
  android:name=".MainActivity"
  android:configChanges="orientation|screenSize" />

소스 몬스터 테크노


android : configChanges = "orientation | screenSize"를 추가하면 완벽하게 작동했습니다. 도와 주셔서 감사합니다!!!
Burak

사용자 정의 WebChromeClient를 설정하면 문제가 해결되었습니다. 감사!
vato

5

편집 : 지금은 필요하지 않으므로 다른 답변을 참조하십시오 .

말씀 하셨듯이 API 레벨 11 이상에서는 HTML5VideoFullScreen $ VideoSurfaceView가 전달됩니다. 하지만 "MediaPlayer가 없습니다"라고 말할 때 당신이 옳다고 생각하지 않습니다.

리플렉션을 사용하여 HTML5VideoFullScreen $ VideoSurfaceView 인스턴스에서 MediaPlayer 인스턴스에 도달하는 방법입니다 .

@SuppressWarnings("rawtypes")
Class c1 = Class.forName("android.webkit.HTML5VideoFullScreen$VideoSurfaceView");
Field f1 = c1.getDeclaredField("this$0");
f1.setAccessible(true);

@SuppressWarnings("rawtypes")
Class c2 = f1.getType().getSuperclass();
Field f2 = c2.getDeclaredField("mPlayer");
f2.setAccessible(true);

Object ___html5VideoViewInstance = f1.get(focusedChild); // Look at the code in my other answer to this same question to see whats focusedChild

Object ___mpInstance = f2.get(___html5VideoViewInstance); // This is the MediaPlayer instance.

이제 다음과 같이 MediaPlayer 인스턴스의 onCompletion 리스너를 설정할 수 있습니다.

OnCompletionListener ocl = new OnCompletionListener()
{
    @Override
    public void onCompletion(MediaPlayer mp)
    {
        // Do stuff
    }
};

Method m1 = f2.getType().getMethod("setOnCompletionListener", new Class[] { Class.forName("android.media.MediaPlayer$OnCompletionListener") });
m1.invoke(___mpInstance, ocl);

코드가 실패하지는 않지만 onCompletion 리스너가 실제로 호출되는지 또는 상황에 유용 할 수 있는지 완전히 확신 할 수 없습니다. 그러나 누군가가 그것을 시도하고 싶어하는 경우에.


1
도움을 주셔서 감사합니다.이 코드를 시도해 보았습니다. 먼저 모든 장치가 VideoSurfaceView를 사용하는 것은 아니라는 것을 알 수 있습니다. 다른 장치에서 시도했지만 완료 리스너가 호출되지 않았습니다.
nbtk 2013

나는 옵션으로 열리고 같은 활동에서 YouTube 비디오를 재생하고 싶습니다. 어떡하죠?
asok Buzz 2014-07-27

안녕하세요 저는 비디오가 일부 devides stacktrace에서 전체 화면으로 전환 될 때 예외를 받고 있습니다. 여기 pastebin.com/9Gn9jmc2 제가 뭔가 잘못하고 있다면
Rajnish Mishra 2014-08-05

@cprcrack 비디오에서 전체 화면을 클릭하면 활동 방향을 세로에서 가로로 강제로 변경할 수 있습니까?
Muhammad

1

그 수업에 감사드립니다, 크리스티안.

사용자 지정 로딩 뷰가 선택 사항이되도록 약간 조정했습니다.

  @Override
    public View getVideoLoadingProgressView() // Video will start loading, only called in the case of VideoView (typically API level 10-)
    {
        if (loadingView == null)
        {
            return super.getVideoLoadingProgressView();
        }
        else
        {
            loadingView.setVisibility(View.VISIBLE);
            return loadingView;
        }
    }

또한 두 개의 매개 변수 만 사용하는 새 생성자를 추가했습니다. 어쨌든 로딩 뷰가 필요하지 않은 경우 약간의 단순화입니다. 이 정보를 제공해 주셔서 다시 한 번 감사드립니다.


1

그냥 설정
mWebView.setWebChromeClient(new WebChromeClient());

비디오는 일반적으로 사용자 정의보기가 필요하지 않습니다.


7
불행히도 제 경우에는 도움이되지 않았습니다
resource8218

0

이것은 훌륭합니다. 그러나 웹 사이트 링크가 앱 자체에서 열리도록하려면 ExampleActivity.java에 다음 코드를 추가하세요.

webView.setWebViewClient(new WebViewClient() {
        @Override
        public boolean shouldOverrideUrlLoading(WebView view, String url) {
            if (Uri.parse(url).getHost().endsWith("yourwebsite.com")) {
                return false;
            }

            Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
            view.getContext().startActivity(intent);
            return true;
        }
    });

0

Cprcrack의 답변은 API 레벨 19 이하에서 매우 잘 작동합니다. cprcrack에 약간만 추가하면 onShowCustomViewAPI 레벨 21 이상에서 작동합니다.

if (Build.VERSION.SDK_INT >= 21) {
      videoViewContainer.setBackgroundColor(Color.BLACK);
      ((ViewGroup) webView.getParent()).addView(videoViewContainer);
      webView.scrollTo(0,0);  // centers full screen view 
} else {
      activityNonVideoView.setVisibility(View.INVISIBLE);
      ViewGroup.LayoutParams vg = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.MATCH_PARENT,
                    ViewGroup.LayoutParams.MATCH_PARENT);
      activityVideoView.addView(videoViewContainer,vg);
      activityVideoView.setVisibility(View.VISIBLE);
}

또한 변경 사항을 반영해야합니다. onHideCustomView


0

lollipop 이상에서 (또는 다른 WebView 버전) 호출 cprcrack's onHideCustomView()방법이 작동하지 않는 것 같습니다. 전체 화면 종료 버튼에서 호출하면 작동하지만 메서드를 구체적으로 호출하면 전체 화면 만 종료되지만 webView빈 상태로 유지됩니다. 이를 우회하는 방법은 다음 코드 줄을 다음과 같이 추가하는 것입니다 onHideCustomView().

String js = "javascript:";
js += "var _ytrp_html5_video = document.getElementsByTagName('video')[0];";
js += "_ytrp_html5_video.webkitExitFullscreen();";
webView.loadUrl(js);

이것은 전체 화면이 종료되었음을 webView에 알립니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.