AgentWeb与JS 方法调用

项目背景:在Fragment中加载webView,然后点击webView跳转到了新Activity加载新页面,但是页面上点击事件在安卓端无效,ios因为没有新窗口打开,所以点击事件是有效的,所以安卓和js做了一次交互,实现失效的按钮点击事件。

Android端:加载AgentWeb

private AgentWeb mAgentWeb;
    private void init() {
        LinearLayout linearLayout = getView().findViewById(R.id.XXX);
        mAgentWeb = AgentWeb.with(this)
                .setAgentWebParent((LinearLayout) linearLayout, new LinearLayout.LayoutParams(-1, -1)) //父布局
                .useDefaultIndicator(0xFF3A91F3) //不能设置R.color  识别不了
                .createAgentWeb()
                .ready()
                .go(url);
    
    }

Android端:传递事件给js

    mAgentWeb.getJsInterfaceHolder().addJavaObject("android", new AndroidInterface()); 事件传递给js

 

 Android端:创建接口事件

public class AndroidInterface {
        @JavascriptInterface //一定要加
        public void finishFromJS() {
            getActivity().finish();

        }
    }

JS端:调用android 原生方法

window.android.finishFromJS();

 

你可能感兴趣的:(安卓,android,安卓,webview)