如何使用Java代码中的Javascript接口将数据传递到WebView中的Javascript?

时间:2013-03-12 22:35:11

标签: java javascript android android-webview

我正在尝试使用Javascript接口将我的Android Java代码中的变量传递给WebView中的Javascript,但警报显示“未定义”。

这是Java的一部分:

public class WebAppInterface {
    Context mContext;

    WebAppInterface(Context c) {
        mContext = c;
    }

    @JavascriptInterface
    public int getValue() {
        return 5;
    }
 }

和Javascript:

function getValue() {
    Android.getValue();
}

var value = getValue();
alert(value);

请注意,我的界面名为“Android”。我做错了什么?

1 个答案:

答案 0 :(得分:3)

尝试将'return'关键字添加到getValue函数中:

function getValue() {
  return Android.getValue();
}

alert(getValue());