Webview loadurl () pop-up system browser solution

Source: Internet
Author: User

Most of the time, the requested website will jump directly to a location, which will directly load the webpage to be redirected in the full screen browser, or pop up the browser selection (except for the system, you have installed other browsers on your own ).

The solution is to jump to the webview.

Method 1:

  1. Mywebview. setwebviewclient (New webviewclient (){
  2. Public Boolean shouldoverrideurlloading (webview view, string URL)
  3. {// Rewrite this method to indicate that clicking the link in the webpage is still redirected to the current webview, not to the browser.
  4. View. loadurl (URL );
  5. Return true;
  6. }
  7. }

Method 2:

  1. Private
    Class
    Diywebviewclient
    Extends
    Webviewclient
    {
  2. @ Override
  3. Public
    Boolean shouldoverrideurlloading (webview
    View,
    String URL)
    {
  4. View. loadurl (URL );
  5. Return
    True;
  6. }
  7. }
Mywebview. setwebviewclient (New
Diywebviewclient ());

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.