有没有办法在Android应用程序(Java)中播放Twitch Streams

时间:2018-04-12 06:59:19

标签: java android webview twitch

我无法在Android应用程序中播放Twitch Streams。 Twitch只提供他们的嵌入式网址来播放Streams。

我正在使用此网址:https://player.twitch.tv/?channel=CHANNEL_NAME

我正在使用WebView加载此网址

mWebview.loadUrl(url);

但是这种方法有几个问题,比如视频往往会自动播放但最初会卡住。我需要先按暂停,然后按播放按钮启动此流。

1 个答案:

答案 0 :(得分:0)

尝试使用此代码。

  private WebView mWebview ;

@Override
public void onCreate(Bundle savedInstanceState) {

    super.onCreate(savedInstanceState);

    getWindow().requestFeature(Window.FEATURE_PROGRESS);
    mWebview  = new WebView(this);

    mWebview.getSettings().setJavaScriptEnabled(true); // enable javascript

    final Activity activity = this;

    mWebview.setWebViewClient(new WebViewClient() {
        @SuppressWarnings("deprecation")
        @Override
        public void onReceivedError(WebView view, int errorCode, String description, String failingUrl) {
            Toast.makeText(activity, description, Toast.LENGTH_SHORT).show();
        }
        @TargetApi(android.os.Build.VERSION_CODES.M)
        @Override
        public void onReceivedError(WebView view, WebResourceRequest req, WebResourceError rerr) {
            // Redirect to deprecated method, so you can use it in all SDK versions
            onReceivedError(view, rerr.getErrorCode(), rerr.getDescription().toString(), req.getUrl().toString());
        }
    });

    mWebview .loadUrl(url);
    setContentView(mWebview );

}