Home Web Front-end HTML Tutorial Android Native App与WebView交互技巧_html/css_WEB-ITnose

Android Native App与WebView交互技巧_html/css_WEB-ITnose

Jun 21, 2016 am 08:46 AM

这次项目中有一个主页面完全是H5的页面,要求H5调用Native,js交互传值,看起来貌似很简单,网上教程一大堆,但是在实际开发过程中还是遇到很多问题,在这里记录一下。

  1. 首先,设置user agent,使前端可区分请求来自APP ,这里我设置的是"android_app/1.0.0",名称加版本号,具体设置什么大家可随意。
WebSettings settings = webView.getSettings();String ua = settings.getUserAgentString();settings.setUserAgentString(ua + "; android_app/1.0.0");
Copy after login

2.H5页面的登录,因为我们的应用不需要登录也能浏览,H5的页面有些也是不需要登陆的,所以点击H5页面需要登录的地方,要跳转到Native的页面登录,登录成功刷新H5页面,设置cookie,使WebView页面保持登录状态,具体代码如下:注:WebSettings的一些设置一定要放到设置cookie前面执行。设置cookie要注意作用域的问题,以及setCookie的时候最好分步设置,大家可以看下面的代码,我setCookie()了四次,不要把所有字符串拼接起来再一次setCookie,一次setCookie可能只会设置成功第一个分号前的cookie值。

public void synCookies(Context context, String host, String cookies) {        try {            CookieSyncManager.createInstance(context);            CookieManager cookieManager = CookieManager.getInstance();            // 5.0以上版本的webview做了较大的改动,如:同步cookie的操作已经可以自动同步、但前提是我们必须开启第三方cookie的支持。            // cookieManager.setAcceptThirdPartyCookies(webView, true);//5.0以下的手机崩溃            cookieManager.setAcceptCookie(true);            cookieManager.removeSessionCookie();//移除            cookieManager.removeAllCookie();            //base64加密//            String base64Cookies = Base64Utils.encodeStr(getCookies());            //根据RFC822规定,BASE64Encoder编码每76个字符,还需要加上一个回车换行。            //使用 commons-codec-1.10.jar 不会换行而且效率更高            //这里我使用的是sun.misc.BASE64Decoder.jar,每76个字符会换行,所以下面去掉换行,为什么不用上面的呢,使用commons-codec-1.10.jar,Android Studio编译提示方法重复,没找到解决办法。//            base64Cookies = base64Cookies.replace("\n", "");//            Log.i("base64Cookies:", base64Cookies);            Calendar calendar = Calendar.getInstance();            calendar.add(Calendar.DAY_OF_MONTH, 7);            String expiresTime = calendar.getTime().toGMTString();            Log.i("expiresTime =", expiresTime);            //分开设置,不然只会设置第一个分号之前的cookie//            cookieManager.setCookie(host, "Token=" + base64Cookies);            //不加密            cookieManager.setCookie(host, "Token=" + cookies);            //注意host的值,类似于这个网址:http://www.jianshu.com/writer#/notebooks/2498434/notes/4304102/preview,host可以取:www.jianshu.com或者.jianshu.com,注意作用域,不要把整个url都放上了。            cookieManager.setCookie(host, "Domain=" + host);            cookieManager.setCookie(host, "Path=/");            // Expires变量是一个只写变量,它确定了Cookie有效终止日期。该属性值DATE必须以特定的格式来书写:            // 星期几,DD-MM-YY HH:MM:SS GMT,GMT表示这是格林尼治时间。反之,不以这样的格式来书写,系统将无法识别。            // 该变量可省,如果缺省时,则Cookie的属性值不会保存在用户的硬盘中,而仅仅保存在内存当中,Cookie文件将随着浏览器的关闭而自动消失。            cookieManager.setCookie(host, "Expires=" + expiresTime);            CookieSyncManager.getInstance().sync();            String newCookie = cookieManager.getCookie(host);            if (newCookie != null) {                Log.i("getCookie:", newCookie);            }        } catch (Exception e) {            Log.e("failedCookie=%s", e.toString());        }    }
Copy after login

3.自定义scheme、js交互传值、调用js方法及document对象

例如:登录scheme为 goto://just/loginref=http://www.baidu.com&callback=loginWeb  webView.setWebViewClient(new WebViewClient() {            @Override            public boolean shouldOverrideUrlLoading(WebView view, String url) {                //1.登录scheme    url = goto://just/login?callback=loginWeb                if (url.startsWith("goto://just/login")) {                    //登录,跳转到native得LoginActivity                    //成功后在onActivityResult()方法中执行js的回调方法loginWeb传toekn值给H5                    return true;                    //2.跳转新activity scheme    url = goto://just/newweb?ref=http://www.baidu.com                } else if (url.startsWith("goto://just/newweb")) {                    //页面加载不在本页webview加载,而是新打开此MainActivity(标准模式,为了循环复用)                    String ref = "http://www.baidu.com";                    Intent intent = new Intent(MainActivity.this, MainActivity.class);                    intent.putExtra("webUrl", ref);                    startActivity(intent);                    return true;                }                return super.shouldOverrideUrlLoading(view, url);            }            @Override            public void onReceivedError(WebView view, WebResourceRequest request, WebResourceError error) {                super.onReceivedError(view, request, error);                //页面错误                llError.setVisibility(View.VISIBLE);            }            public void onPageFinished(WebView view, String url) {                Log.d("WebView", "onPageFinished ");                //获取整个页面的Html                view.loadUrl("javascript:window.weixinObj.getHtml('<head>'+" +                        "document.getElementsByTagName('html')[0].innerHTML+'</head>');");                //通过document.title 获取页面的title                view.loadUrl("javascript:window.weixinObj.getTitle(document.title)");                //此方法也可以通过document.title 获取标题,但是需要Api19才能使用//                view.evaluateJavascript("document.title", new ValueCallback<String>() {//                    @Override//                    public void onReceiveValue(String title) {////                    }//                });                super.onPageFinished(view, url);            }        }); @Override    protected void onActivityResult(int requestCode, int resultCode, Intent data) {        super.onActivityResult(requestCode, resultCode, data);        //登录页返回后执行        String callback = "loginWeb";        synCookies(this, host, cookies);        webView.loadUrl("javascript:" + callback + "('" + cookies + "')");        webView.reload();    } private class InterfaceObject {        @JavascriptInterface        public void getHtml(String html) {            //获取html的内容        }        @JavascriptInterface        public void getTitle(String title) {            //获取标题        }    }
Copy after login

4.以上是我在项目中使用到的一些交互,经过测试是可用的,其实上面写的这些网上有很多,但是比较分散,我就自己总结了一下,例子无法运行的(没有调试,可能有些逻辑错误),因为没有网页测试,如果使用本地html的也不好模拟网络上环境,所以只写了一些逻辑,需要大家自行写h5测试。

资源:Example下载

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

What is the purpose of the <datalist> element? What is the purpose of the <datalist> element? Mar 21, 2025 pm 12:33 PM

The article discusses the HTML &lt;datalist&gt; element, which enhances forms by providing autocomplete suggestions, improving user experience and reducing errors.Character count: 159

How do I use HTML5 form validation attributes to validate user input? How do I use HTML5 form validation attributes to validate user input? Mar 17, 2025 pm 12:27 PM

The article discusses using HTML5 form validation attributes like required, pattern, min, max, and length limits to validate user input directly in the browser.

What is the purpose of the <iframe> tag? What are the security considerations when using it? What is the purpose of the <iframe> tag? What are the security considerations when using it? Mar 20, 2025 pm 06:05 PM

The article discusses the &lt;iframe&gt; tag's purpose in embedding external content into webpages, its common uses, security risks, and alternatives like object tags and APIs.

What is the purpose of the <progress> element? What is the purpose of the <progress> element? Mar 21, 2025 pm 12:34 PM

The article discusses the HTML &lt;progress&gt; element, its purpose, styling, and differences from the &lt;meter&gt; element. The main focus is on using &lt;progress&gt; for task completion and &lt;meter&gt; for stati

What is the purpose of the <meter> element? What is the purpose of the <meter> element? Mar 21, 2025 pm 12:35 PM

The article discusses the HTML &lt;meter&gt; element, used for displaying scalar or fractional values within a range, and its common applications in web development. It differentiates &lt;meter&gt; from &lt;progress&gt; and ex

What are the best practices for cross-browser compatibility in HTML5? What are the best practices for cross-browser compatibility in HTML5? Mar 17, 2025 pm 12:20 PM

Article discusses best practices for ensuring HTML5 cross-browser compatibility, focusing on feature detection, progressive enhancement, and testing methods.

What is the viewport meta tag? Why is it important for responsive design? What is the viewport meta tag? Why is it important for responsive design? Mar 20, 2025 pm 05:56 PM

The article discusses the viewport meta tag, essential for responsive web design on mobile devices. It explains how proper use ensures optimal content scaling and user interaction, while misuse can lead to design and accessibility issues.

How do I use the HTML5 <time> element to represent dates and times semantically? How do I use the HTML5 <time> element to represent dates and times semantically? Mar 12, 2025 pm 04:05 PM

This article explains the HTML5 &lt;time&gt; element for semantic date/time representation. It emphasizes the importance of the datetime attribute for machine readability (ISO 8601 format) alongside human-readable text, boosting accessibilit

See all articles