gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-29 14:39:58 25 4
gpt4 key购买 nike

我无法在我的 Android 应用程序中播放 Twitch 直播。Twitch 仅提供用于播放 Streams 的嵌入 url。

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

我正在使用 WebView 加载此 url

mWebview.loadUrl(url);

但是这种方法有几个问题,比如视频倾向于自动播放但一开始就卡住了。我需要先按暂停,然后按播放 按钮来开始此流。

最佳答案

尝试使用此代码。

  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 );

}

关于java - 有没有办法在 Android 应用程序(Java)中播放 Twitch Streams,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49789969/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com