【发布时间】:2013-07-30 11:16:58
【问题描述】:
您好,我正在尝试几天以几种方法来使其正常工作,如果有人可以帮我找出我做错了什么,我失败了,我想要的是当我按下按钮时它会显示 javascript Toast 中的文本:
我的 java 主程序:
package com.callphone;
import android.app.Activity;
import android.content.Context;
import android.os.Bundle;
import android.webkit.WebChromeClient;
import android.webkit.WebSettings;
import android.webkit.WebView;
import android.widget.Toast;
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
String content = "file:///android_asset/www/mypage.html";
WebView webView = (WebView) findViewById(R.id.mybrowser);
WebSettings webSettings = webView.getSettings();
webSettings.setJavaScriptEnabled(true);
webView.setWebChromeClient(new WebChromeClient());
webView.loadUrl(content);
webView.addJavascriptInterface(new MyJavaScriptInterface(this), "AndroidFunction");
}
public class MyJavaScriptInterface {
Context mContext;
MyJavaScriptInterface(Context c) {
mContext = c;
}
public void showToast(String toast){
Toast.makeText(mContext, toast, Toast.LENGTH_SHORT).show();
}
}
}
我的 xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<WebView
android:id="@+id/mybrowser"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
/>
</LinearLayout>
我的html:
<!DOCTYPE html>
<html>
<head>
<script src="index.js"></script>
</head>
<body>
<h1>What's your number</h1>
<button onclick="shownumber('55555')">show number</button>
</body>
</html>
还有我的javascript:
function shownumber(number) {
AndroidFunction.showToast(number);
}
当我更改 javascript 以提醒它显示警报时,我发现 AndroidFunction 存在问题
提前致谢。
【问题讨论】:
标签: java javascript android webview toast