When using EditText to display HTML strings, EditText will not perform any parsing of the HTML tags, but will directly display all HTML tags - just like displaying with ordinary Notepad; if the application wants to re- It is also possible to parse HTML strings and display them as HTML pages.
The loadData(String data, String mimeType, String encoding) method provided by WebView can be used to load and display HTML code, but in actual use, when it loads Chinese HTML content, WebView will Garbled characters will be displayed.
WebView also provides a loadDataWithBaseURL(String baseUrl, String data, String mimeType, String encoding, String historyUrl) method, which is an enhanced version of the loadData(String data, String mimeType, String encoding) method. It No garbled characters will be generated.
1. data: Specify the HTML code that needs to be loaded.
2. mimeType: Specify the MIME type of the HTML code. For HTML code, it can be specified as text/html.
3. Encoding: Specify the character set used for HTML code encoding. For example, specify GBK.
import android.os.Bundle; import android.app.Activity; import android.view.Menu; import android.webkit.WebView; public class ViewHtml extends Activity { WebView show; @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_view_html); //获取程序中的WebView组件 show = (WebView) findViewById(R.id.show); StringBuilder sb = new StringBuilder(); //拼接一段HTML代码 sb.append("<html>"); sb.append("<head>"); sb.append("<title>Our Love</title>"); sb.append("</head>"); sb.append("<body>"); sb.append("<h2>Love<a href=\"http://love.shiningchen.cc\">" +"Shining</a></h2>"); sb.append("</body>"); sb.append("</html>"); //使用简单的loadData方法会导致乱码,可能是Android API的Bug //show.loadData(sb.toString(), "text/html", "utf-8"); //加载、并显示HTML代码 show.loadDataWithBaseURL(null,sb.toString(), "text/html", "utf-8", null); } }
The above is the detailed content of Detailed explanation of how to load HTML code using WebView. For more information, please follow other related articles on the PHP Chinese website!

本篇文章带大家了解一下HTML(超文本标记语言),介绍一下HTML的本质,HTML文档的结构、HTML文档的基本标签和图像标签、列表、表格标签、媒体元素、表单,希望对大家有所帮助!

使用Java13中的新的JavaFXWebView组件来显示网页内容随着Java的不断发展,JavaFX已经成为构建跨平台图形界面的主要工具之一。JavaFX提供了丰富的图形库和组件,让开发者能够轻松地创建各种各样的用户界面。其中,JavaFXWebView组件是一个非常有用的组件,它允许我们在JavaFX应用程序中显示网页内容。在Java13中,J

总结了一些web前端面试(笔试)题分享给大家,本篇文章就先给大家分享HTML部分的笔试题(附答案),大家可以自己做做,看看能答对几个!

基本知识Android架构Kernel内核层漏洞危害极大,通用性强驱动由于多而杂,也可能存在不少漏洞Libaries系统运行库层系统中间件形式提供的运行库包括libc、WebKit、SQLite等等AndroidRunTimeDalvik虚拟机和内核库FrameWork应用框架层提供一系列的服务和API的接口活动管理器内容提供器视图资源管理器通知管理器Application应用层系统应用主屏幕Home、联系人Contact、电话Phone、浏览器Browser其他应用开发者使用应用程序框架层的A

HTML5中画布标签是“<canvas>”。canvas标签用于图形的绘制,它只是一个矩形的图形容器,绘制图形必须通过脚本(通常是JavaScript)来完成;开发者可利用多种js方法来在canvas中绘制路径、盒、圆、字符以及添加图像等。

在html中,document是文档对象的意思,代表浏览器窗口的文档;document对象是window对象的子对象,所以可通过“window.document”属性对其进行访问,每个载入浏览器的HTML文档都会成为Document对象。

html5废弃了dir列表标签。dir标签被用来定义目录列表,一般和li标签配合使用,在dir标签对中通过li标签来设置列表项,语法“<dir><li>列表项值</li>...</dir>”。HTML5已经不支持dir,可使用ul标签取代。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

WebStorm Mac version
Useful JavaScript development tools

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver Mac version
Visual web development tools

Notepad++7.3.1
Easy-to-use and free code editor
