Android app Bug solution that caused WebView to be loaded because of adding JS

Source: Internet
Author: User

Recently in the development of the program, found that there is an application of the WebView load HTML5 page is always loaded, loading is slow or simply cannot be loaded out,

But in other applications there is no problem, can quickly load, find a circle of problems, the head is too big to find. Daniel, who listens to the browser today, may be

JS caused, try to add mwebview.pausetimers (), Onresume () in the OnPause to add mwebview.resumetimers ().


Miraculously solved, is currently studying why ....


       @Override         protected void OnPause () {             super.onpause ();               Mwebview.pausetimers ();             if (isfinishing ()) {                 Mwebview.loadurl ("About:blank");                 Setcontentview (New Framelayout (this));             }         }           @Override         protected void Onresume () {             super.onresume ();             Mwebview.resumetimers ();         }  


Android app Bug solution that caused WebView to be loaded because of adding JS

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.