这只是实现从 html 文件播放音频的目标的替代方式
使用Android 的Mediaplayer ( http://developer.android.com/reference/android/media/MediaPlayer.html ) 播放音频。您可以从您在 HTML 文件中编写的 javascript 调用 android 的功能..
这是如何从 javascript 代码调用用 java 文件编写的函数的示例
WebView webView = (WebView) findViewById(R.id.webview);
webView.addJavascriptInterface(new WebAppInterface(this), "Android");
--------------------------------
public class WebAppInterface {
Context mContext;
/** Instantiate the interface and set the context */
WebAppInterface(Context c) {
mContext = c;
}
/** Show a toast from the web page */
@JavascriptInterface
public void showToast(String toast) {
Toast.makeText(mContext, toast, Toast.LENGTH_SHORT).show();
}
}
---------------------------
java sript code
<input type="button" value="Say hello" onClick="showAndroidToast('Hello Android!')" />
<script type="text/javascript">
function showAndroidToast(toast) {
Android.showToast(toast);
}
</script>
这样您就可以从 Android 代码中调用音频。