HTML5
使用 Android 的 Mediaplayer 来播放音频。您需要从 HTML 文件中编写的 JavaScript 调用 Android 的函数。
WebView wv = (WebView) findViewById(R.id.webview); wv.addJavascriptInterface(new WebAppInterface(this), "Android"); public class WebAppInterface { Context mContext; WebAppInterface(Context c) { mContext = c; } @JavascriptInterface public void showToast(String toast) { Toast.makeText(mContext, toast, Toast.LENGTH_SHORT).show(); } }
以下是我的 JavaScript
<input type = "button" value = "Demo" onClick = "showAndroidToast('Hello Android!')" /> <script> function showAndroidToast(toast) { Android.showToast(toast); } </script>
广告