使用webchromeclient在android 4.4+上的webview中打开youtube页面并在同一窗口中播放视频

时间:2013-12-15 07:58:13

标签: android-4.4-kitkat webchromeclient

我正在创建一个Android应用程序,我只想在webview中加载用户的youtube“页面”。 因此,有两个客户端WebViewClient& WebChromeClient和播放视频我们必须使用WebChromeClient,但是当我使用WebChromeClient加载youtube页面时,我的主要活动为我提供了在Chrome浏览器或youtube应用程序中打开它的选项,但我想在同一webview中加载页面。

NOte:它在Android 4.2.2上工作正常,但我无法在4.4+版本上运行

MainActivity.java

public class MainActivity extends Activity {

    public static final String PAGE_URL = "http://www.youtube.com/jaambhaari";
    final Activity activity = this;

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

        setContentView(R.layout.activity_main);     
        WebView webview = (WebView) findViewById(R.id.webView);

        webview.getSettings().setJavaScriptEnabled(true);   
        webview.getSettings().setUseWideViewPort(true);
        webview.getSettings().setLoadWithOverviewMode(true);

        webview.setWebViewClient(new WebViewClient(){});        
        webview.setWebChromeClient(new WebChromeClient(){
            public void onProgressChanged(WebView view, int progress){
                activity.setTitle("Loading...");
                if(progress == 100){
                    activity.setTitle(R.string.app_name);
                }
            }
        });     
        webview.loadUrl(PAGE_URL);
    }
}

的Manifest.xml

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.jaambhaari.jaambhaari"
    android:versionCode="1"
    android:versionName="1.0" >

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

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="19" />

    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:hardwareAccelerated="true"
        android:theme="@style/AppTheme" >
        <!-- Splash screen -->
        <activity
            android:name="com.jaambhaari.jaambhaari.SplashScreen"
            android:label="@string/app_name"
            android:screenOrientation="portrait"
            android:scaleType="fitXY"
            android:theme="@android:style/Theme.Black.NoTitleBar" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" /> 
                <category android:name="android.intent.category.LAUNCHER" />
                <data android:mimeType="application/*" />
                <data android:mimeType="audio/*" />
                <data android:mimeType="image/*" />
                <data android:mimeType="message/*" />
                <data android:mimeType="multipart/*" />
                <data android:mimeType="text/*" />
                <data android:mimeType="video/*" />
            </intent-filter>
        </activity>

        <!-- Main activity -->
        <activity
            android:name="com.jaambhaari.jaambhaari.MainActivity"
            android:label="@string/app_name" >            
        </activity>
    </application> 
</manifest>

以下是我在Android 4.4.2上运行时在控制台中获得的文本:

  1. 不支持视口目标密度dpi
  2. FBIOGET_FSCREENINFO失败
  3. 不支持异步像素传输

1 个答案:

答案 0 :(得分:6)

新的webview是一团糟。很多东西都坏了。我想将此添加为评论,但没有足够的声誉。您可以浏览此错误报告(html视频支持)

https://code.google.com/p/chromium/issues/detail?id=239864

问题是如此严重,以至于开发人员为了获得旧的webview而哭泣 https://code.google.com/p/android/issues/detail?id=62293