通过Android WebView从JavaScript调用Java函数


75

我想在我的Android应用程序中对某些Java代码进行同步调用。

我正在使用此解决方案:https : //stackoverflow.com/a/3338656

我的Java代码:

final class MyWebChromeClient extends WebChromeClient {
        public boolean onJsAlert(WebView view, String url, String message, JsResult result) {
            Log.d("LogTag", message);
            result.confirm();
            return true;
        }
    }

我的JavaScript代码:

<html>
<script>
function java_request(){
    alert('test');
}
</script>
<body>
<h2>Welcome</h2>
<div id="area"></div>
<form>
<input type="button" value="java_call" onclick="java_request()">
</form>
</body>
</html>

当我点击java_call按钮时,按钮进入按下状态。我可以'test'在控制台日志中看到。一切正常,直到这里。

问题是,按钮永远不会回到其正常状态。它保持在按下状态。也许JavaScript执行中断了还是什么?

为什么按钮从不返回其正常状态?

Answers:


108

我认为这不是让JavaScript执行Java代码的最佳解决方案。看这里:

如果您想将本机代码公开给HTML,以便可以通过javascript进行调用,请在您的网络视图声明中执行以下操作:

JavaScriptInterface jsInterface = new JavaScriptInterface(this);
webView.getSettings().setJavaScriptEnabled(true);
webView.addJavascriptInterface(jsInterface, "JSInterface");

宣布课程JavaScriptInterface

public class JavaScriptInterface {
    private Activity activity;

    public JavaScriptInterface(Activity activity) {
        this.activity = activity;
    }

    @JavascriptInterface
    public void startVideo(String videoAddress){
        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setDataAndType(Uri.parse(videoAddress), "video/3gpp"); 
        activity.startActivity(intent);
    }
}

我声明了一个用于播放视频的功能,但是您可以做任何您想做的事情。

最后,您可以WebView通过简单的javascript调用在内容中调用此代码:

<video width="320" height="240" controls="controls" poster='poster.gif'
       onclick="window.JSInterface.startVideo('file:///sdcard/test.3gp');" >
   Your browser does not support the video tag.
</video>

这个例子取自我的另一个关于播放视频的答案,但应该有足够的解释。

编辑根据@CedricSoubrie的评论:如果应用程序的目标版本设置为17或更高,则需要在@JavascriptInterface要导出到Web视图的每种方法上方添加注释。


1
感谢您提供信息,我看到了此解决方案。由于此解决方案在2.3.X中存在一个错误,因此我不想使用它。解决方法非常好。
ozkolonur 2012年

@ozkolonur我在所有版本的Android 2.2+上都使用过此功能,但从未见过任何错误。你能分享它是什么。链接也非常受欢迎。
鲍里斯·斯特兰杰夫

我想“ playVideo”和“ startVideo”应该相同吗?
Maarten

2
@Maarten:实际上,这并不是我回答中的唯一错误。我已经纠正了。
鲍里斯·斯特兰德耶夫

2
@BorisStrandjev非常明确的答案!请注意,必须将“ @JavascriptInterface”批注添加到希望从JavaScript中获取的版本17或更高版本的任何方法。来源:developer.android.com/guide/webapps/webview.html
CedricSoubrie 2013年

2

您的函数返回“ true”。这使得HTML代码的'onclick'属性等于true,因此按钮保持为'clicked'。


2

在“ YourJavaScriptInterface ”类中定义的方法,不要忘了用“ @JavascriptInterface”注释要公开的每个方法,否则将不会触发该方法。

例如,以下代码来自Google Cloud Print JavaScript界面​​,用于来自Webview页面的调用:

        final class PrintDialogJavaScriptInterface {
        @JavascriptInterface
        public String toString() { return JS_INTERFACE; }

        @JavascriptInterface
        public String getType() {
            return cloudPrintIntent.getType();
        }

        @JavascriptInterface
        public String getTitle() {
            return cloudPrintIntent.getExtras().getString("title");
        }

        @JavascriptInterface
        public String getContent() {
            try {
                ContentResolver contentResolver = getActivity().getContentResolver();
                InputStream is = contentResolver.openInputStream(cloudPrintIntent.getData());
                ByteArrayOutputStream baos = new ByteArrayOutputStream();

                byte[] buffer = new byte[4096];
                int n = is.read(buffer);
                while (n >= 0) {
                    baos.write(buffer, 0, n);
                    n = is.read(buffer);
                }
                is.close();
                baos.flush();

                return Base64.encodeToString(baos.toByteArray(), Base64.DEFAULT);
            } catch (FileNotFoundException e) {
                e.printStackTrace();
            } catch (IOException e) {
                e.printStackTrace();
            }
            return "";
        }

        @JavascriptInterface
        public String getEncoding() {
            return CONTENT_TRANSFER_ENCODING;
        }

        @JavascriptInterface
        public void onPostMessage(String message) {
            if (message.startsWith(CLOSE_POST_MESSAGE_NAME)) {
                finish();
            }
        }
    }
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.