Webview中的Android youtube网站正在干扰

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Webview中的Android youtube网站正在干扰相关的知识,希望对你有一定的参考价值。

我尝试在android应用程序中使用WebView加载youtube网站。需要将整个youtube站点加载到WebView(不仅仅是一个特定的视频URL)。这意味着用户在youtube网站上选择视频然后播放。但视频的播放是干扰。在应用程序中使用youtube是不对的?

我正在使用此代码:webView.loadUrl(url);

答案

请按照此代码,它将适合您

main activity.Java

import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.webkit.WebView;

public class MainActivity extends AppCompatActivity {

private WebView mWebview ;
private String youtubeUrl = "https://www.youtube.com/";

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

    mWebview = (WebView) findViewById(R.id.youtubeWebView);
    mWebview.loadUrl(youtubeUrl);
    mWebview.getSettings().setjavascriptEnabled(true);

}
}

activity_main.xml中

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">

<WebView
    android:id="@+id/youtubeWebView"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    />

</android.support.constraint.ConstraintLayout>

并在您的清单文件中添加Internet权限

AndroidManifest.xml中

 <uses-permission android:name="android.permission.INTERNET" />

它将在下面的图片中看起来像这样。

enter image description here

另一答案

您可以将任何网址加载到网页视图中,并在您应用的清单文件中添加互联网权限,并使用如下代码 -

yourWebView.loadUrl(youtubeUrl);

这对我有用,我相信它会合作

以上是关于Webview中的Android youtube网站正在干扰的主要内容,如果未能解决你的问题,请参考以下文章

通过单击 Android Studio 中的按钮在 webview 中获取随机 Youtube 视频

android 6中的android webview youtube视频中的全屏模式问题

嵌入在 Android Webview 中的 Youtube 视频不能以 SINGLE_COLUMN 布局播放

WebView 中的 Youtube 视频无法加载

网页视图中的 Android youtube

Youtube API v3 使用 webView 在 Android 上创建 Youtube 频道