Webview: how to hide the address bar and use webview to display webpage content

Source: Internet
Author: User

Android provides an interface for encapsulating browsers, allowing developers to display webpage content using their own views. Today, I have made another research. Using webview to display browser content, you can also use webviewclient to display the content you need.

Refer:Http://developer.android.com/reference/android/webkit/WebView.html

The effect is as follows:

 

The above two figures are respectively on the home page. They are displayed when you click Java. You can see that there is no address bar on the browser. This is the content displayed using webviewclient. RelatedCodeAs follows:

...

Webview WV;

@ Override
Public void oncreate (bundle icicle ){
Super. oncreate (icicle );
Setcontentview (R. layout. Main );

WV = (webview) findviewbyid (R. Id. wv1 );
WV. loadurl ("Http://wangjun.easymorse.com /");
WV. setwebviewclient (New webviewclientdemo ());

}

Private class webviewclientdemo extends webviewclient {
@ Override
// Display the page in webview instead of in the default browser
Public Boolean shouldoverrideurlloading (webview view, string URL ){
View. loadurl (URL );
Return true;
}
}

...

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

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.