Android leverages WebView to enable browser encapsulation

Source: Internet
Author: User

Android provides an interface to encapsulate the browser, allowing developers to use their view to display Web content. Today, we have studied again, using WebView to display browser content, you can also use Webviewclient to display what you need.

Reference: http://developer.android.com/reference/android/webkit/WebView.html

The effect is as follows:

The above two pictures are the first page, when you click on java. You can see that there is no address bar on the browser. This is the content that is displayed using Webviewclient. The relevant code is as follows:

WebView WV; @Override Public voidonCreate (Bundle icicle) {Super. OnCreate (Icicle);        Setcontentview (R.layout.main); WV=(WebView) Findviewbyid (R.ID.WV1); Wv.loadurl ("Wv.setwebviewclient (NewWebviewclientdemo ()); }    Private classWebviewclientdemoextendswebviewclient {@Override//display the page in WebView instead of the default browser         Public Booleanshouldoverrideurlloading (WebView view, String URL) {view.loadurl (URL); return true; }     }

Source code:http://wangjun-memory.googlecode.com/svn/trunk/helloWebView/

Related Article

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.