0
我想在我的應用程序的xml文件中嵌入一個YouTube視頻。如何在Android中使用Object標籤嵌入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:錯誤膨脹類對象
需要幫助!
有沒有例外的魔法...... Inflater不知道類'對象' – Selvin 2012-03-30 11:14:03
謝謝..但我又如何嵌入視頻..嘗試了很多..新的Android可以幫助嗎? – 2012-03-30 11:16:19
閱讀文檔...有一個示例如何從字符串加載html到webview – Selvin 2012-03-30 11:37:33