我正在尝试在我的应用程序的xml文件中嵌入youtube视频。
以下是我的XML文件:
<?xml version="1.0" encoding="utf-8"?>
<WebView
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/tour_webview"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<object
width="480"
height="330">
<param
name="movie"
value="http://www.youtube.com/v/tjxpMhGwXH4?version=3&hl=pt_BR&rel=0">
</param>
<param
name="allowFullScreen"
value="true">
</param>
<param
name="allowscriptaccess"
value="always">
</param>
<embed
src="http://www.youtube.com/v/tjxpMhGwXH4?version=3&hl=pt_BR&rel=0"
type="application/x-shockwave-flash"
width="480"
height="330"
allowscriptaccess="always"
allowfullscreen="true" />
</object>
</WebView>
以下是我的java文件:
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.tours_04);
WebView wv = (WebView)findViewById(R.id.tour_webview);
wv.getSettings().setPluginsEnabled(true);
wv.getSettings().setJavaScriptEnabled(true);
wv.getSettings().setAllowFileAccess(true);
wv.loadUrl("http://www.youtube.com/watch?v=tjxpMhGwXH4");
setContentView(wv);
}
Logcat说:
由abdroid引起.View.InflateException:二进制XML文件行#7:错误扩充类对象
需要帮助!
答案 0 :(得分:0)