1

一直停留在这个问题上。我有一个 webviewfragment,它有一个我创建、加载的 html 文件。在 html 文件中有一些 javascript,可以让我在我的 android 应用程序中调用一些方法。这是html:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title></title>
</head>

<body>
<img src="Guideline1.gif" usemap="#Guideline9" border="0" />
<map name="Guideline9" id="generalGuideline9">
 <area shape="rect" coords="124,329,290,357" onClick="Android.TestMethod();" />
</map>


</body>
</html>

WebViewFragment 代码如下所示:

@SuppressLint("JavascriptInterface")
public class MyWebView extends WebViewFragment {

android.webkit.WebView wv;
String name2;
String fileName2;
String itemFileName;

CommunicateWithMyWebView mCallback;

public interface CommunicateWithMyWebView {
    public void toggleActionBar();
    public void addTab();
}

@Override
public void onAttach(Activity activity) {
    super.onAttach(activity);

    try {
     mCallback = (CommunicateWithMyWebView) activity;
    } catch (ClassCastException e) {
        throw new ClassCastException(activity.toString()
                + " must implement CommunicateWithMyWebView");
    }

}



@SuppressLint("SetJavaScriptEnabled")
@Override
public void onResume() {
    super.onResume();

    name2=getArguments().getString("name2"); 
    fileName2=getArguments().getString("fileName2");
    itemFileName = "file:///android_asset/" + fileName2 + ".html";

    wv = getWebView();

    wv.getSettings().setJavaScriptEnabled(true);

    wv.addJavascriptInterface(new WebAppInterface(this.getActivity()), "Android"); 

    wv.getSettings().setBuiltInZoomControls(true);

    wv.getSettings().setLoadWithOverviewMode(true);

    wv.getSettings().setUseWideViewPort(true);

    wv.setLongClickable(true);

    wv.setOnLongClickListener(new OnLongClickListener() {

        public boolean onLongClick(View v) {

            mCallback.toggleActionBar();
            return false;
        }
    });

    wv.loadUrl(itemFileName);
}

public class WebAppInterface {
    Activity mContext;

    WebAppInterface(Activity activity) {
        mContext = activity;
    }

    @JavascriptInterface
    public void TestMethod() {


        mCallback.addTab();
    }
} 

}

这让我可以让我的 webviewfragment 调用父活动的方法,该方法正在工作。MainActivity 实现了 CommunicateWithMyWebView 接口。以下是具有 addTab() 方法的主要活动代码部分:

public void addTab() {

    tabsFrag.test1();

}

tabsFrag 是 MainActivity 显示的另一个片段。下面是 tabsFrag 中 test1() 函数的代码:

public void test1() {

    Log.d("MyApp", "" + b1.getText());
}

b1 是标签片段内的按钮。正如我所展示的那样,此代码工作正常。但是,如果我将日志命令更改为:

public void test1() {

    b1.setVisibility(View.GONE);
}

鉴于 b1 的可见性当前是可见的,它不会改变模拟器上的可见性(但不会崩溃,API 18),但会在我必须测试的平板电脑上停止和崩溃。运行 4.0.4 的三星 Galaxy 选项卡。

如果我从任何其他方法调用 tabsFrag 中的 test1() 方法,只要该操作不是源自地图区域单击 html 文件,设置可见性就可以正常工作,不会发生崩溃或任何事情。

我不太确定如何在这里实现 try catch 块。

我能得到的任何帮助都会很棒。

4

1 回答 1

5

使用 ui 线程更改视图状态。

@JavascriptInterface
    public void TestMethod() {

        runOnUiThread(new Runnable(){

            public void run(){

              mCallback.addTab();
            }

        });

    }
于 2013-07-31T11:47:06.677 回答