1
youtubeやyahooのビデオをAndroidアプリケーションに埋め込む方法 私はPhonegapを使用していますので、主にJavaScriptを書いています。コードはネイティブコードにラップされていますどのようにYahooの動画やAndroidの動画を埋め込む
しかし、私は唯一のJS & HTML5
youtubeやyahooのビデオをAndroidアプリケーションに埋め込む方法 私はPhonegapを使用していますので、主にJavaScriptを書いています。コードはネイティブコードにラップされていますどのようにYahooの動画やAndroidの動画を埋め込む
しかし、私は唯一のJS & HTML5
を書いてあなたが最も可能性の高いリンクが埋め込まれたビデオのハイパーリンクで指さWebViewを使用します。次の線に沿って
何か:次に
<LinearLayout ... >
... my content
<WebView android:id="@+id/webView1" ... >
...
</WebView>
</LinearLayout>
(主にWebViewのドキュメントからの)コードに次のフックを使用します。
WebView webview = (WebView) activity.getViewById(R.id.webView1);
// Simplest usage: note that an exception will NOT be thrown
// if there is an error loading this page (see below).
webview.loadUrl("http://slashdot.org/");
// OR, you can also load from an HTML string:
String summary = "<html><body>You scored <b>192</b> points.</body></html>";
webview.loadData(summary, "text/html", "utf-8");
// ... although note that there are restrictions on what this HTML can do.
// See the JavaDocs for loadData() and loadDataWithBaseURL() for more info.
が
<uses-permission android:name="android.permission.INTERNET" />
を忘れてはいけませんマニフェストの