我尝试在Android应用程序中使用WebView加载youtube网站。需要将整个youtube站点加载到WebView(不仅仅是一个特定的视频URL)。这意味着用户在youtube网站上选择视频然后播放。但视频的播放是干扰。在应用程序中使用youtube是不对的?
我正在使用此代码:webView.loadUrl(url);
答案 0 :(得分:0)
pls Follow this code it will work for you
MainActivity.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>
and add Internet Permission inside your Manifest file
AndroidManifest.xml
<uses-permission android:name="android.permission.INTERNET" />
it will looks like this in the below pic.
答案 1 :(得分:0)
您可以将任何网址加载到网络视图中,并在您应用的清单文件中添加互联网权限,并使用如下代码 -
yourWebView.loadUrl(youtubeUrl);
这适合我,我相信它会配合使用