我以前看过这个问题的实例,但我要么无法让它们工作,要么不理解它们。
我确保将我的 webview 设置为 WebChromeClient 并在清单文件中启用硬件加速。我将编译后的应用程序发送到三星 Galaxy Tab GT-P1000。结果是视频元素加载但文件不播放。该 html 文件在我的 PC 上的 chrome 中按预期运行。
我在 ADT 方面没有太多经验,所以如果您可以尝试尽可能详细地回复您的回复,那就太好了!
这是我的html代码..
<!DOCTYPE html>
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<script type="text/javascript"></script>
</head>
<body>
<div id="video">
<video id="vid" height="240" width="360" preload controls>
<source src="ljmuvideo.mp4" type="video/mp4">
</video>
</div>
<script>
var video = document.getElementById('vid');
video.addEventListener('click',function(){
video.play();
},false);
</script>
</body>
</html>
这是我的 MainActivity.java
package com.ljmu.sltwebview;
import android.os.Bundle;
import android.annotation.SuppressLint;
import android.app.Activity;
import android.view.Menu;
import android.view.WindowManager;
import android.webkit.WebChromeClient;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.webkit.WebViewClient;
public class MainActivity extends Activity {
@SuppressLint("SetJavaScriptEnabled") @Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
WebView mywebview = (WebView) findViewById(R.id.webview);
mywebview.loadUrl("file:///android_asset/html5vid.html");
mywebview.getSettings().setUseWideViewPort(true);
WebSettings webSettings = mywebview.getSettings();
webSettings.setJavaScriptEnabled(true);
webSettings.setBuiltInZoomControls(true);
mywebview.setWebChromeClient(new WebChromeClient());
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}
}
这是我的清单文件
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ljmu.sltwebview"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:hardwareAccelerated="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.ljmu.sltwebview.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>