Android WebView embed Web page

Source: Internet
Author: User
Android uses WebView to embed Web pages

网页里面a标签进行apk下载结果发现点击手机屏幕无响应用浏览器访问是可以正常触发下载的

May I ask which Warrior has encountered a similar situation?
Solve ~ ~ ~

Reply content:

Android uses WebView to embed Web pages

网页里面a标签进行apk下载结果发现点击手机屏幕无响应用浏览器访问是可以正常触发下载的

May I ask which Warrior has encountered a similar situation?
Solve ~ ~ ~

WebView download to implement, webview.setdownloadlistener through this get download event, processing download logic

If there is only one link to do this:

webView.setWebViewClient(new WebViewClient() {            public boolean shouldOverrideUrlLoading(WebView view, String url) {                download(url);                return true;            }        });
  • Contact Us

    The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

    If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

    A Free Trial That Lets You Build Big!

    Start building with 50+ products and up to 12 months usage for Elastic Compute Service

    • Sales Support

      1 on 1 presale consultation

    • After-Sales Support

      24/7 Technical Support 6 Free Tickets per Quarter Faster Response

    • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.