Android: This is a comprehensive and detailed guide to using Webview_April Human V’s Blog
Foreword Many App now have built-in Web pages (Hybrid App), such as many e-commerce platforms, such as Taobao, JD.com, Juhuasuan, etc. As shown below Jingdong Homepage So how can this be achieved? In fact, this is the implementation of a WebView component in Android Today, I will present a comprehensive introduction to common uses of WebView. Table of Contents Article directory 1. Introduction WebView is a control based on the webkit engine to display web pages. Android’s Webview adopts different webkit version kernels in low and high versions, and directly uses Chrome after 4.4. 2. Function Display and render web pages Directly use html files (on the network or in local assets) for layout Can be called interactively with JavaScript The WebView control is powerful. In addition to the properties and settings of the general View, it can also perform powerful processing on url requests, page loading, rendering, and page interaction. 3. Introduction Generally speaking, Webview can be used alone or in conjunction with its tools, so next, I will introduce: Common methods of the Webview class itself The most commonly used tool classes of Webview: WebSettings class, WebViewClient class, WebChromeClient class Interaction between Android and Js 3.1 Common methods…